mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
21 lines
510 B
Makefile
21 lines
510 B
Makefile
pcfiles = \
|
|
gst-editing-services-@GST_API_VERSION@.pc
|
|
|
|
pcfiles_uninstalled = \
|
|
gst-editing-services-@GST_API_VERSION@-uninstalled.pc
|
|
|
|
all-local: $(pcfiles) $(pcfiles_uninstalled)
|
|
|
|
### how to generate pc files
|
|
%-@GST_API_VERSION@.pc: %.pc
|
|
cp $< $@
|
|
%-@GST_API_VERSION@-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)
|