gstreamer/pkgconfig/Makefile.am
Thomas Vander Stichele 4f1cf0cfdf moving pkgconfig to it's own dir and separating out gstreamer-control
Original commit message from CVS:
moving pkgconfig to it's own dir and separating out gstreamer-control
2003-01-28 17:24:52 +00:00

22 lines
612 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 = $(pcfiles:.pc=.pc.in) \
$(pcfiles_uninstalled:.pc=.pc.in)