mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
8ce827c406
Original commit message from CVS: move check stuff to its own library to be used by other modules
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
### all of the standard pc files we need to generate
|
|
if HAVE_CHECK
|
|
CHECK_PC_I = gstreamer-check-@GST_MAJORMINOR@.pc
|
|
CHECK_PC_U = gstreamer-check-@GST_MAJORMINOR@-uninstalled.pc
|
|
else
|
|
CHECK_PC_I =
|
|
CHECK_PC_U =
|
|
endif
|
|
|
|
pcfiles = \
|
|
gstreamer-@GST_MAJORMINOR@.pc \
|
|
gstreamer-base-@GST_MAJORMINOR@.pc \
|
|
$(CHECK_PC_I) \
|
|
gstreamer-controller-@GST_MAJORMINOR@.pc \
|
|
gstreamer-dataprotocol-@GST_MAJORMINOR@.pc
|
|
|
|
pcfiles_uninstalled = \
|
|
gstreamer-@GST_MAJORMINOR@-uninstalled.pc \
|
|
gstreamer-base-@GST_MAJORMINOR@-uninstalled.pc \
|
|
$(CHECK_PC_U) \
|
|
gstreamer-controller-@GST_MAJORMINOR@-uninstalled.pc \
|
|
gstreamer-dataprotocol-@GST_MAJORMINOR@-uninstalled.pc
|
|
|
|
all-local: $(pcfiles) $(pcfiles_uninstalled)
|
|
|
|
### how to generate pc files
|
|
%-@GST_MAJORMINOR@.pc: %.pc
|
|
cp $< $@
|
|
%-@GST_MAJORMINOR@-uninstalled.pc: %-uninstalled.pc
|
|
cp $< $@
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = $(pcfiles)
|
|
|
|
EXTRA_DIST = \
|
|
gstreamer.pc.in \
|
|
gstreamer-uninstalled.pc.in \
|
|
gstreamer-base.pc.in \
|
|
gstreamer-base-uninstalled.pc.in \
|
|
gstreamer-check.pc.in \
|
|
gstreamer-check-uninstalled.pc.in \
|
|
gstreamer-controller.pc.in \
|
|
gstreamer-controller-uninstalled.pc.in \
|
|
gstreamer-dataprotocol.pc.in \
|
|
gstreamer-dataprotocol-uninstalled.pc.in
|
|
|
|
CLEANFILES = $(pcfiles) $(pcfiles_uninstalled)
|