X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=Makefile;h=076efc79b9532c3e1b80a8ef5b9687456a2fe895;hp=3a8cda90fb09751d013c58f8feca8c8952f7478f;hb=e2dd4ac00b9979de34bd517fa57de56260d38755;hpb=cc48812cb55e046a77ce1b4aad33566acc5fbd47 diff --git a/Makefile b/Makefile index 3a8cda90..076efc79 100644 --- a/Makefile +++ b/Makefile @@ -1,41 +1,14 @@ -PROGS=notmuch +# We want the all target to be the implicit target (if no target is +# given explicitly on the command line) so mention it first. +all: -CXXWARNINGS_FLAGS=-Wall -Wextra -Wno-unused-parameter -CWARNINGS_FLAGS=$(CXXWARNINGS_FLAGS) +# List all subdirectories here. Each contains its own Makefile.local +subdirs = compat completion emacs lib -CDEPENDS_FLAGS=`pkg-config --cflags glib-2.0 talloc` -CXXDEPENDS_FLAGS=`pkg-config --cflags glib-2.0 talloc` `xapian-config --cxxflags` +# We make all targets depend on the Makefiles themselves. +global_deps = Makefile Makefile.local \ + $(subdirs:%=%/Makefile) $(subdirs:%=%/Makefile.local) -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` - -MODULES= \ - notmuch.o \ - database.o \ - date.o \ - message.o \ - message-file.o \ - query.o \ - sha1.o \ - libsha1.o \ - xutil.o - -all: $(PROGS) - -%.o: %.cc - $(CXX) -c $(CFLAGS) $(CXXFLAGS) $(MYCXXFLAGS) $< -o $@ - -%.o: %.c - $(CC) -c $(CFLAGS) $(MYCFLAGS) $< -o $@ - -notmuch: $(MODULES) - $(CC) $(MYLDFLAGS) $^ -o $@ - -Makefile.dep: *.c *.cc - $(CC) -M $(CPPFLAGS) $(CDEPENDS_FLAGS) $^ > $@ --include Makefile.dep - -clean: - rm -f $(PROGS) *.o Makefile.dep +# Finally, include all of the Makefile.local fragments where all the +# real work is done. +include Makefile.local $(subdirs:%=%/Makefile.local)