mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
22 lines
506 B
Makefile
22 lines
506 B
Makefile
|
pcfiles = \
|
||
|
gst-editing-services-@GST_MAJORMINOR@.pc
|
||
|
|
||
|
pcfiles_uninstalled = \
|
||
|
gst-editing-services-@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 = \
|
||
|
gst-editing-services.pc.in \
|
||
|
gst-editing-services-uninstalled.pc.in
|
||
|
CLEANFILES = $(pcfiles) $(pcfiles_uninstalled)
|