mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
da83c3bba3
Original commit message from CVS: Fix bug 104695, add the 5 files to CLEANFILES. Could maybe be done a little cleaner in testsuite/threads, depending on what the registry.xml file is generated by, etc. Probably fine as it is.
27 lines
712 B
Makefile
27 lines
712 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)
|