mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
658bba4626
Original commit message from CVS: * configure.ac: * libs/gst/dataprotocol/Makefile.am: * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_validate_packet): * libs/gst/dataprotocol/dataprotocol.h: * pkgconfig/Makefile.am: * pkgconfig/gstreamer-dataprotocol-uninstalled.pc.in: * pkgconfig/gstreamer-dataprotocol.pc.in: Ported dataprotol to 0.9. Added pkgconfig files.
35 lines
1 KiB
Makefile
35 lines
1 KiB
Makefile
### all of the standard pc files we need to generate
|
|
pcfiles = \
|
|
gstreamer-@GST_MAJORMINOR@.pc \
|
|
gstreamer-base-@GST_MAJORMINOR@.pc \
|
|
gstreamer-control-@GST_MAJORMINOR@.pc \
|
|
gstreamer-dataprotocol-@GST_MAJORMINOR@.pc
|
|
|
|
pcfiles_uninstalled = \
|
|
gstreamer-@GST_MAJORMINOR@-uninstalled.pc \
|
|
gstreamer-base-@GST_MAJORMINOR@-uninstalled.pc \
|
|
gstreamer-control-@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-control.pc.in \
|
|
gstreamer-control-uninstalled.pc.in \
|
|
gstreamer-dataprotocol.pc.in \
|
|
gstreamer-dataprotocol-uninstalled.pc.in
|
|
|
|
CLEANFILES = $(pcfiles) $(pcfiles_uninstalled)
|