mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
7c613ec347
Generating those files is useful for users building the GStreamer stack using meson and having to link it to another project which is still using the autotools. Fixed the -uninstalled pc file libdir path while I was on it. https://bugzilla.gnome.org/show_bug.cgi?id=776810
26 lines
719 B
Makefile
26 lines
719 B
Makefile
pcfiles = \
|
|
gst-validate-@GST_API_VERSION@.pc
|
|
|
|
pcfiles_uninstalled = \
|
|
gst-validate-@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
|
|
### the uninstalled libdir is depend of the build system used so set it here
|
|
### rather than hardcoding it in the file directly.
|
|
$(AM_V_GEN) sed \
|
|
-e "s|[@]validatelibdir[@]|$(abs_top_builddir)/gst/validate/.libs|" \
|
|
$< > $@.tmp && mv $@.tmp $@
|
|
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = $(pcfiles)
|
|
|
|
EXTRA_DIST = \
|
|
gst-validate.pc.in \
|
|
gst-validate-uninstalled.pc.in
|
|
CLEANFILES = $(pcfiles) $(pcfiles_uninstalled)
|