From 0fc9452b034808c51980cabd99573d67d9963936 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Thu, 26 Feb 2009 12:46:36 +0000 Subject: [PATCH] [build] Do not shave typelib generation Bug 1478 - typelib creation shaved out of existence Add a 'GEN' output rule for the typelib files created when introspection is enabled. --- clutter/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clutter/Makefile.am b/clutter/Makefile.am index d5d4909d1..ececb94af 100644 --- a/clutter/Makefile.am +++ b/clutter/Makefile.am @@ -288,7 +288,7 @@ typelibsdir = $(libdir)/girepository-1.0/ typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) %.typelib: %.gir $(INTROSPECTION_COMPILER) - $(DEBUG) $(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=. $(INTROSPECTION_COMPILER_OPTS) $< -o $(builddir)/$(@F) + $(QUIET_GEN)$(DEBUG) $(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=. $(INTROSPECTION_COMPILER_OPTS) $< -o $(builddir)/$(@F) CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA) endif