2003-04-07 21:28:57 +00:00
|
|
|
### all of the standard pc files we need to generate
|
2005-08-20 12:14:28 +00:00
|
|
|
if HAVE_CHECK
|
|
|
|
CHECK_PC_I = gstreamer-check-@GST_MAJORMINOR@.pc
|
|
|
|
CHECK_PC_U = gstreamer-check-@GST_MAJORMINOR@-uninstalled.pc
|
|
|
|
else
|
|
|
|
CHECK_PC_I =
|
|
|
|
CHECK_PC_U =
|
|
|
|
endif
|
|
|
|
|
2003-11-24 02:09:23 +00:00
|
|
|
pcfiles = \
|
|
|
|
gstreamer-@GST_MAJORMINOR@.pc \
|
2005-04-06 11:08:07 +00:00
|
|
|
gstreamer-base-@GST_MAJORMINOR@.pc \
|
2005-08-20 12:14:28 +00:00
|
|
|
$(CHECK_PC_I) \
|
|
|
|
gstreamer-controller-@GST_MAJORMINOR@.pc \
|
2005-11-18 16:24:56 +00:00
|
|
|
gstreamer-dataprotocol-@GST_MAJORMINOR@.pc \
|
|
|
|
gstreamer-net-@GST_MAJORMINOR@.pc
|
2003-04-07 21:28:57 +00:00
|
|
|
|
2003-11-24 02:09:23 +00:00
|
|
|
pcfiles_uninstalled = \
|
|
|
|
gstreamer-@GST_MAJORMINOR@-uninstalled.pc \
|
2005-04-06 11:08:07 +00:00
|
|
|
gstreamer-base-@GST_MAJORMINOR@-uninstalled.pc \
|
2005-08-20 12:14:28 +00:00
|
|
|
$(CHECK_PC_U) \
|
2005-08-02 21:35:34 +00:00
|
|
|
gstreamer-controller-@GST_MAJORMINOR@-uninstalled.pc \
|
2005-11-18 16:24:56 +00:00
|
|
|
gstreamer-dataprotocol-@GST_MAJORMINOR@-uninstalled.pc \
|
|
|
|
gstreamer-net-@GST_MAJORMINOR@-uninstalled.pc
|
2003-04-07 21:28:57 +00:00
|
|
|
|
|
|
|
all-local: $(pcfiles) $(pcfiles_uninstalled)
|
|
|
|
|
2010-02-26 15:03:47 +00:00
|
|
|
cp_verbose = $(cp_verbose_$(V))
|
|
|
|
cp_verbose_ = $(cp_verbose_$(AM_DEFAULT_VERBOSITY))
|
|
|
|
cp_verbose_0 = @echo " CP $@";
|
|
|
|
|
2003-04-07 21:28:57 +00:00
|
|
|
### how to generate pc files
|
2004-04-19 22:54:58 +00:00
|
|
|
%-@GST_MAJORMINOR@.pc: %.pc
|
2010-02-26 15:03:47 +00:00
|
|
|
$(cp_verbose_0)cp $< $@
|
2004-04-19 22:54:58 +00:00
|
|
|
%-@GST_MAJORMINOR@-uninstalled.pc: %-uninstalled.pc
|
2010-02-26 15:03:47 +00:00
|
|
|
$(cp_verbose_0)cp $< $@
|
2003-04-07 21:28:57 +00:00
|
|
|
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
pkgconfig_DATA = $(pcfiles)
|
|
|
|
|
2003-11-24 02:09:23 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
gstreamer.pc.in \
|
|
|
|
gstreamer-uninstalled.pc.in \
|
2005-04-06 11:08:07 +00:00
|
|
|
gstreamer-base.pc.in \
|
|
|
|
gstreamer-base-uninstalled.pc.in \
|
2005-08-20 12:14:28 +00:00
|
|
|
gstreamer-check.pc.in \
|
|
|
|
gstreamer-check-uninstalled.pc.in \
|
|
|
|
gstreamer-controller.pc.in \
|
2005-08-02 21:35:34 +00:00
|
|
|
gstreamer-controller-uninstalled.pc.in \
|
2005-07-05 10:20:14 +00:00
|
|
|
gstreamer-dataprotocol.pc.in \
|
2005-11-18 16:24:56 +00:00
|
|
|
gstreamer-dataprotocol-uninstalled.pc.in \
|
|
|
|
gstreamer-net.pc.in \
|
|
|
|
gstreamer-net-uninstalled.pc.in
|
2003-04-07 21:28:57 +00:00
|
|
|
|
|
|
|
CLEANFILES = $(pcfiles) $(pcfiles_uninstalled)
|