-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Make some more rules silent if requested
- Loading branch information
Sebastian Dröge
committed
Mar 9, 2010
1 parent
3f3fcb0
commit d5a4ca9
Showing
16 changed files
with
36 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ gir_sources+=$(patsubst %,$(builddir)/%, $(nodist_libgstapp_@GST_MAJORMINOR@_la_ | |
gir_cincludes=$(patsubst %,--c-include='gst/app/%',$(libgstapp_@GST_MAJORMINOR@include_HEADERS)) | ||
|
||
GstApp-@[email protected]: $(INTROSPECTION_SCANNER) libgstapp-@[email protected] | ||
PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(AM_V_GEN)PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(INTROSPECTION_SCANNER) -v --namespace GstApp \ | ||
--nsversion=@GST_MAJORMINOR@ \ | ||
--strip-prefix=Gst \ | ||
|
@@ -69,7 +69,7 @@ typelibsdir = $(libdir)/girepository-1.0/ | |
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) | ||
|
||
%.typelib: %.gir $(INTROSPECTION_COMPILER) | ||
$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-base-0.10` $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
$(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-base-0.10` $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
|
||
CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA) | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,7 +68,7 @@ gir_cincludes=$(patsubst %,--c-include='gst/audio/%',$(libgstaudio_@GST_MAJORMIN | |
gir_cincludes+=$(patsubst %,--c-include='gst/audio/%',$(nodist_libgstaudio_@GST_MAJORMINOR@include_HEADERS)) | ||
|
||
GstAudio-@[email protected]: $(INTROSPECTION_SCANNER) libgstaudio-@[email protected] | ||
PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(AM_V_GEN)PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(INTROSPECTION_SCANNER) -v --namespace GstAudio \ | ||
--nsversion=@GST_MAJORMINOR@ \ | ||
--strip-prefix=Gst \ | ||
|
@@ -100,7 +100,7 @@ typelibsdir = $(libdir)/girepository-1.0/ | |
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) | ||
|
||
%.typelib: %.gir $(INTROSPECTION_COMPILER) | ||
$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-base-0.10` --includedir=$(builddir)/../interfaces $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
$(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-base-0.10` --includedir=$(builddir)/../interfaces $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
|
||
CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA) | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ gir_sources=$(patsubst %,$(srcdir)/%, $(libgstcdda_@GST_MAJORMINOR@_la_SOURCES)) | |
gir_cincludes=$(patsubst %,--c-include='gst/cdda/%',$(libgstcdda_@GST_MAJORMINOR@include_HEADERS)) | ||
|
||
GstCdda-@[email protected]: $(INTROSPECTION_SCANNER) libgstcdda-@[email protected] | ||
PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(AM_V_GEN)PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(INTROSPECTION_SCANNER) -v --namespace GstCdda \ | ||
--nsversion=@GST_MAJORMINOR@ \ | ||
--strip-prefix=Gst \ | ||
|
@@ -53,7 +53,7 @@ typelibsdir = $(libdir)/girepository-1.0/ | |
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) | ||
|
||
%.typelib: %.gir $(INTROSPECTION_COMPILER) | ||
$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
$(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
|
||
CLEANFILES = $(BUILT_GIRSOURCES) $(typelibs_DATA) | ||
endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,7 @@ gir_sources=$(patsubst %,$(srcdir)/%, $(libgstfft_@GST_MAJORMINOR@_la_SOURCES)) | |
gir_cincludes=$(patsubst %,--c-include='gst/fft/%',$(libgstfft_@GST_MAJORMINOR@_include_HEADERS)) | ||
|
||
GstFft-@[email protected]: $(INTROSPECTION_SCANNER) libgstfft-@[email protected] | ||
PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(AM_V_GEN)PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(INTROSPECTION_SCANNER) -v --namespace GstFft \ | ||
--nsversion=@GST_MAJORMINOR@ \ | ||
--strip-prefix=Gst \ | ||
|
@@ -76,7 +76,7 @@ typelibsdir = $(libdir)/girepository-1.0/ | |
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) | ||
|
||
%.typelib: %.gir $(INTROSPECTION_COMPILER) | ||
$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
$(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
|
||
CLEANFILES = $(BUILT_GIRSOURCES) $(typelibs_DATA) | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,7 +81,7 @@ gir_cincludes=$(patsubst %,--c-include='gst/interfaces/%',$(libgstinterfacesincl | |
gir_cincludes+=$(patsubst %,--c-include='gst/interfaces/%',$(nodist_libgstinterfacesinclude_HEADERS)) | ||
|
||
GstInterfaces-@[email protected]: $(INTROSPECTION_SCANNER) libgstinterfaces-@[email protected] | ||
PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(AM_V_GEN)PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(INTROSPECTION_SCANNER) -v --namespace GstInterfaces \ | ||
--nsversion=@GST_MAJORMINOR@ \ | ||
--strip-prefix=Gst \ | ||
|
@@ -107,7 +107,7 @@ typelibsdir = $(libdir)/girepository-1.0/ | |
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) | ||
|
||
%.typelib: %.gir $(INTROSPECTION_COMPILER) | ||
$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
$(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
|
||
CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA) | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ gir_sources=$(patsubst %,$(srcdir)/%, $(libgstnetbuffer_@GST_MAJORMINOR@_la_SOUR | |
gir_cincludes=$(patsubst %,--c-include='gst/netbuffer/%',$(libgstnetbufferinclude_HEADERS)) | ||
|
||
GstNetbuffer-@[email protected]: $(INTROSPECTION_SCANNER) libgstnetbuffer-@[email protected] | ||
PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(AM_V_GEN)PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(INTROSPECTION_SCANNER) -v --namespace GstNetbuffer \ | ||
--nsversion=@GST_MAJORMINOR@ \ | ||
--strip-prefix=Gst \ | ||
|
@@ -41,7 +41,7 @@ typelibsdir = $(libdir)/girepository-1.0/ | |
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) | ||
|
||
%.typelib: %.gir $(INTROSPECTION_COMPILER) | ||
$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
$(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
|
||
CLEANFILES = $(BUILT_GIRSOURCES) $(typelibs_DATA) | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,7 @@ gir_cincludes=$(patsubst %,--c-include='gst/pbutils/%',$(libgstpbutils_@GST_MAJO | |
gir_cincludes+=$(patsubst %,--c-include='gst/pbutils/%',$(nodist_libgstpbutils_@GST_MAJORMINOR@include_HEADERS)) | ||
|
||
GstPbutils-@[email protected]: $(INTROSPECTION_SCANNER) libgstpbutils-@[email protected] | ||
PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(AM_V_GEN)PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(INTROSPECTION_SCANNER) -v --namespace GstPbutils \ | ||
--nsversion=@GST_MAJORMINOR@ \ | ||
--strip-prefix=Gst \ | ||
|
@@ -83,7 +83,7 @@ typelibsdir = $(libdir)/girepository-1.0/ | |
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) | ||
|
||
%.typelib: %.gir $(INTROSPECTION_COMPILER) | ||
$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
$(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
|
||
CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA) | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ gir_sources=$(patsubst %,$(srcdir)/%, $(libgstriff_@GST_MAJORMINOR@_la_SOURCES)) | |
gir_cincludes=$(patsubst %,--c-include='gst/riff/%',$(libgstriff_@GST_MAJORMINOR@include_HEADERS)) | ||
|
||
GstRiff-@[email protected]: $(INTROSPECTION_SCANNER) libgstriff-@[email protected] | ||
PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(AM_V_GEN)PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(INTROSPECTION_SCANNER) -v --namespace GstRiff \ | ||
--nsversion=@GST_MAJORMINOR@ \ | ||
--strip-prefix=Gst \ | ||
|
@@ -51,7 +51,7 @@ typelibsdir = $(libdir)/girepository-1.0/ | |
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) | ||
|
||
%.typelib: %.gir $(INTROSPECTION_COMPILER) | ||
$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
$(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
|
||
CLEANFILES = $(BUILT_GIRSOURCES) $(typelibs_DATA) | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ gir_sources=$(patsubst %,$(srcdir)/%, $(libgstrtp_@GST_MAJORMINOR@_la_SOURCES)) | |
gir_cincludes=$(patsubst %,--c-include='gst/rtp/%',$(libgstrtpinclude_HEADERS)) | ||
|
||
GstRtp-@[email protected]: $(INTROSPECTION_SCANNER) libgstrtp-@[email protected] | ||
PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(AM_V_GEN)PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(INTROSPECTION_SCANNER) -v --namespace GstRtp \ | ||
--nsversion=@GST_MAJORMINOR@ \ | ||
--strip-prefix=Gst \ | ||
|
@@ -56,7 +56,7 @@ typelibsdir = $(libdir)/girepository-1.0/ | |
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) | ||
|
||
%.typelib: %.gir $(INTROSPECTION_COMPILER) | ||
$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-base-0.10` $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
$(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-base-0.10` $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
|
||
CLEANFILES = $(BUILT_GIRSOURCES) $(typelibs_DATA) | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,7 +60,7 @@ gir_cincludes=$(patsubst %,--c-include='gst/audio/%',$(libgstrtspinclude_HEADERS | |
gir_cincludes+=$(patsubst %,--c-include='gst/audio/%',$(nodist_libgstrtspinclude_HEADERS)) | ||
|
||
GstRtsp-@[email protected]: $(INTROSPECTION_SCANNER) libgstrtsp-@[email protected] | ||
PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(AM_V_GEN)PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(INTROSPECTION_SCANNER) -v --namespace GstRtsp \ | ||
--nsversion=@GST_MAJORMINOR@ \ | ||
--strip-prefix=Gst \ | ||
|
@@ -89,7 +89,7 @@ typelibsdir = $(libdir)/girepository-1.0/ | |
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) | ||
|
||
%.typelib: %.gir $(INTROSPECTION_COMPILER) | ||
$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst --includedir=$(builddir)/../sdp $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
$(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst --includedir=$(builddir)/../sdp $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
|
||
CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA) | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ gir_sources=$(patsubst %,$(srcdir)/%, $(libgstsdp_@GST_MAJORMINOR@_la_SOURCES)) | |
gir_cincludes=$(patsubst %,--c-include='gst/audio/%',$(libgstsdpinclude_HEADERS)) | ||
|
||
GstSdp-@[email protected]: $(INTROSPECTION_SCANNER) libgstsdp-@[email protected] | ||
PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(AM_V_GEN)PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(INTROSPECTION_SCANNER) -v --namespace GstSdp \ | ||
--nsversion=@GST_MAJORMINOR@ \ | ||
--strip-prefix=Gst \ | ||
|
@@ -44,7 +44,7 @@ typelibsdir = $(libdir)/girepository-1.0/ | |
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) | ||
|
||
%.typelib: %.gir $(INTROSPECTION_COMPILER) | ||
$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
$(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
|
||
CLEANFILES = $(BUILT_GIRSOURCES) $(typelibs_DATA) | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ gir_sources=$(patsubst %,$(srcdir)/%, $(libgsttag_@GST_MAJORMINOR@_la_SOURCES)) | |
gir_cincludes=$(patsubst %,--c-include='gst/audio/%',$(libgsttainclude_HEADERS)) | ||
|
||
GstTag-@[email protected]: $(INTROSPECTION_SCANNER) libgsttag-@[email protected] | ||
PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(AM_V_GEN)PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(INTROSPECTION_SCANNER) -v --namespace GstTag \ | ||
--nsversion=@GST_MAJORMINOR@ \ | ||
--strip-prefix=Gst \ | ||
|
@@ -48,7 +48,7 @@ typelibsdir = $(libdir)/girepository-1.0/ | |
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) | ||
|
||
%.typelib: %.gir $(INTROSPECTION_COMPILER) | ||
$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
$(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
|
||
CLEANFILES = $(BUILT_GIRSOURCES) $(typelibs_DATA) | ||
endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ gir_cincludes=$(patsubst %,--c-include='gst/video/%',$(libgstvideo_@GST_MAJORMIN | |
gir_cincludes+=$(patsubst %,--c-include='gst/video/%',$(nodist_libgstvideo_@GST_MAJORMINOR@include_HEADERS)) | ||
|
||
GstVideo-@[email protected]: $(INTROSPECTION_SCANNER) libgstvideo-@[email protected] | ||
PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(AM_V_GEN)PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):$(top_builddir)/pkgconfig" \ | ||
$(INTROSPECTION_SCANNER) -v --namespace GstVideo \ | ||
--nsversion=@GST_MAJORMINOR@ \ | ||
--strip-prefix=Gst \ | ||
|
@@ -67,7 +67,7 @@ typelibsdir = $(libdir)/girepository-1.0/ | |
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) | ||
|
||
%.typelib: %.gir $(INTROSPECTION_COMPILER) | ||
$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-base-0.10` $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
$(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-0.10`/gst --includedir=`$(PKG_CONFIG) --variable=libdir gstreamer-base-0.10` $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F) | ||
|
||
CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA) | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,11 +34,15 @@ pcverfiles_uninstalled = \ | |
|
||
all-local: $(pcverfiles) $(pcverfiles_uninstalled) | ||
|
||
cp_verbose = $(cp_verbose_$(V)) | ||
cp_verbose_ = $(cp_verbose_$(AM_DEFAULT_VERBOSITY)) | ||
cp_verbose_0 = @echo " CP $@"; | ||
|
||
### how to generate versioned .pc files from .pc files in this dir | ||
%-@[email protected]: %.pc | ||
cp $< $@ | ||
$(cp_verbose_0)cp $< $@ | ||
%-@[email protected]: %-uninstalled.pc | ||
cp $< $@ | ||
$(cp_verbose_0)cp $< $@ | ||
|
||
pkgconfigdir = $(libdir)/pkgconfig | ||
pkgconfig_DATA = $(pcverfiles) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,16 +11,16 @@ EXTRA_DIST = \ | |
|
||
# generate versioned scripts from templates | ||
%-@GST_MAJORMINOR@: %-m.m | ||
sed -e s,\@GST_MAJORMINOR\@,@GST_MAJORMINOR@,g $< > $@ | ||
$(AM_V_GEN)sed -e s,\@GST_MAJORMINOR\@,@GST_MAJORMINOR@,g $< > $@ && \ | ||
chmod +x $@ | ||
|
||
# generate man pages | ||
%-@[email protected]: %.1.in | ||
sed \ | ||
$(AM_V_GEN)sed \ | ||
-e s,gst-visualise,gst-visualise-@GST_MAJORMINOR@,g \ | ||
$< >$@ | ||
|
||
all: all-am chmod | ||
|
||
chmod: $(bin_SCRIPTS) | ||
chmod +x $^ | ||
@chmod +x $^ |