mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
950ecc5d5f
Original commit message from CVS: * configure.ac: * gst-libs/gst/Makefile.am: * gst-libs/gst/gconf/.cvsignore: * gst-libs/gst/gconf/Makefile.am: * gst-libs/gst/gconf/test-gconf.c: * pkgconfig/Makefile.am: * pkgconfig/gstreamer-gconf-uninstalled.pc.in: * pkgconfig/gstreamer-gconf.pc.in: Remove gconf stuff, use gconf elements instead from now on.
23 lines
694 B
Makefile
23 lines
694 B
Makefile
### all of the standard pc files we need to generate
|
|
pcverfiles = \
|
|
gstreamer-plugins-base-@GST_MAJORMINOR@.pc
|
|
pcverfiles_uninstalled = \
|
|
gstreamer-plugins-base-@GST_MAJORMINOR@-uninstalled.pc
|
|
|
|
all-local: $(pcverfiles) $(pcverfiles_uninstalled)
|
|
|
|
### how to generate versioned .pc files from .pc files in this dir
|
|
%-@GST_MAJORMINOR@.pc: %.pc
|
|
cp $< $@
|
|
%-@GST_MAJORMINOR@-uninstalled.pc: %-uninstalled.pc
|
|
cp $< $@
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = $(pcverfiles)
|
|
|
|
CLEANFILES = $(pcverfiles) $(pcverfiles_uninstalled)
|
|
pcinfiles = \
|
|
gstreamer-plugins-base.pc.in gstreamer-plugins-base-uninstalled.pc.in
|
|
|
|
DISTCLEANFILES = $(pcinfiles:.in=)
|
|
EXTRA_DIST = $(pcinfiles)
|