From e77a6f0af3fa26fb1b57cd2455188a47d8eb3156 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Thu, 26 Jul 2007 10:00:09 +0000 Subject: Enable strict compiler flags with a configure flag When making a distcheck it's usually a good idea to enable very strict compiler flags, like -Werror, to catch stuff that slipped through the development phase. This patch adds a --enable-maintainer-flags command line switch to the configure script, which enables a set of strict compiler flags. The default is not to use them unless explicitly activated. In case of distcheck, this switch is activated when launching the configure script from within the distcheck build directory. --- Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index bb2bc72eb..719561c83 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS=clutter doc tests +SUBDIRS = clutter doc tests pcfiles = clutter-@CLUTTER_FLAVOUR@-@CLUTTER_MAJORMINOR@.pc @@ -8,7 +8,7 @@ pcfiles = clutter-@CLUTTER_FLAVOUR@-@CLUTTER_MAJORMINOR@.pc pkgconfig_DATA = $(pcfiles) pkgconfigdir = $(libdir)/pkgconfig -DEFAULT_FLAVOUR=@CLUTTER_FLAVOUR@ +DEFAULT_FLAVOUR = @CLUTTER_FLAVOUR@ install-data-hook: (cd $(DESTDIR)$(pkgconfigdir) && \ test -f clutter-$(DEFAULT_FLAVOUR)-@CLUTTER_MAJORMINOR@.pc && \ @@ -22,7 +22,7 @@ EXTRA_DIST = clutter.pc.in HACKING CLEANFILES = $(pcfiles) -DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc +DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-maintainer-flags # Extra clean files so that maintainer-clean removes *everything* MAINTAINERCLEANFILES = aclocal.m4 compile config.guess config.sub \ -- cgit v1.2.1