mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
b7acf41b85
Original commit message from CVS: * docs/libs/Makefile.am: Change sinclude to include * docs/gst/Makefile.am: same * pkgconfig/Makefile.am: Remove GNU-ism from makefile target
27 lines
710 B
Makefile
27 lines
710 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
|
|
%-@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-control.pc.in \
|
|
gstreamer-control-uninstalled.pc.in
|
|
|
|
CLEANFILES = $(pcfiles) $(pcfiles_uninstalled)
|