From 37283ce7b325fc5d7bbdbf03513ccdd9463762d5 Mon Sep 17 00:00:00 2001 From: aquanight Date: Sat, 19 Jan 2008 16:58:18 +0000 Subject: Modules using NoPedantic now properly respect 'make debug'. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8737 e03df62e-2008-0410-955e-edbf42e46eb7 --- .Makefile.inc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to '.Makefile.inc') diff --git a/.Makefile.inc b/.Makefile.inc index 3afbf67a8..c753bda94 100644 --- a/.Makefile.inc +++ b/.Makefile.inc @@ -9,8 +9,10 @@ CC = @CC@ MAKE = @MAKEPROG@ PROGS = inspircd -FLAGS = @FLAGS@ -DEBUG = @DEVELOPER@ +NICEFLAGS = @FLAGS@ +FLAGS = $(NICEFLAGS) -pedantic +NICEDEBUG = @DEVELOPER@ +DEBUG = $(NICEDEBUG) -pedantic LDLIBS = @LDLIBS@ BASE = $(DESTDIR)@BASE_DIR@ CONPATH = $(DESTDIR)@CONFIG_DIR@ @@ -38,7 +40,7 @@ debug: @echo "* experiencing problems. *" @echo "* *" @echo "*************************************" - ${MAKE} -C . 'FLAGS=${DEBUG}' all + ${MAKE} -C . 'FLAGS=${DEBUG}' 'NICEFLAGS=${NICEDEBUG}' all mods: @echo "Making modules..." -- cgit v1.2.3