From: Carl Worth Date: Sun, 25 Oct 2009 22:19:36 +0000 (-0700) Subject: Rework Makefile just a bit to enable adding flags for more compiler warnings X-Git-Tag: 0.1~708 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=067c547b236133cacbe7192b99bcd5487a08f7c8 Rework Makefile just a bit to enable adding flags for more compiler warnings We have to carefully separate the C and C++ flags here since a bunch of the warnings options for gcc are valid for compiling C, but not for C++. --- diff --git a/Makefile b/Makefile index 1737a32e..5188e5d5 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,13 @@ PROGS=notmuch -MYCFLAGS=-Wall -O0 -g `pkg-config --cflags glib-2.0 talloc` -MYCXXFLAGS=$(MYCFLAGS) `xapian-config --cxxflags` +CXXWARNINGS_FLAGS=-Wall +CWARNINGS_FLAGS=$(CXX_WARNINGS_FLAGS) + +CDEPENDS_FLAGS=`pkg-config --cflags glib-2.0 talloc` +CXXDEPENDS_FLAGS=`pkg-config --cflags glib-2.0 talloc` `xapian-config --cxxflags` + +MYCFLAGS=$(CWARNINGS_FLAGS) -O0 -g $(CDEPENDS_FLAGS) +MYCXXFLAGS=$(CXXWARNINGS_FLAGS) -O0 -g $(CXXDEPENDS_FLAGS) MYLDFLAGS=`pkg-config --libs glib-2.0 talloc` `xapian-config --libs` @@ -28,7 +34,7 @@ notmuch: $(MODULES) $(CC) $(MYLDFLAGS) $^ -o $@ Makefile.dep: *.c *.cc - $(CC) -M $(CPPFLAGS) $(MYCFLAGS) $^ > $@ + $(CC) -M $(CPPFLAGS) $(CDEPENDS_FLAGS) $^ > $@ -include Makefile.dep clean: