mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 13:53:19 +00:00
385b9ee5c4
Original commit message from CVS: merge in tagging Includes: - gsttag.[ch] - The definition of GstTagList and tag registering/querying - gsttaginterface.[ch] - Interface for elements that can handle setting of tags - updates and merges to gststructure.[ch] and gstvalue.[ch] - testsuite/tags - some tests for tagging - bugfixes - updates to make make distcheck work - updates the version number to 0.7.2.1 Does not include: - including tagging stuff in docs - extensive tests
27 lines
746 B
Makefile
27 lines
746 B
Makefile
### all of the standard pc files we need to generate
|
|
pcfiles = \
|
|
gstreamer-@GST_MAJORMINOR@.pc \
|
|
gstreamer-control-@GST_MAJORMINOR@.pc
|
|
|
|
pcfiles_uninstalled = \
|
|
gstreamer-@GST_MAJORMINOR@-uninstalled.pc \
|
|
gstreamer-control-@GST_MAJORMINOR@-uninstalled.pc
|
|
|
|
all-local: $(pcfiles) $(pcfiles_uninstalled)
|
|
|
|
### how to generate pc files
|
|
$(pcfiles): %-@GST_MAJORMINOR@.pc: %.pc
|
|
cp $< $@
|
|
$(pcfiles_uninstalled): %-@GST_MAJORMINOR@-uninstalled.pc: %-uninstalled.pc
|
|
cp $< $@
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = $(pcfiles)
|
|
|
|
EXTRA_DIST = \
|
|
gstreamer.pc.in \
|
|
gstreamer-uninstalled.pc.in \
|
|
gstreamer-control.pc.in \
|
|
gstreamer-control-uninstalled.pc.in
|
|
|
|
CLEANFILES = $(pcfiles) $(pcfiles_uninstalled)
|