X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=Makefile;h=f3697861e75d540f20954a46589284a3db10e278;hp=b2d5924b61756e608d664c1b3075f3982479d5f2;hb=784e55d0f990350d0be8e54892f0eb3afe087fc5;hpb=eb7b8cf31a8378784e97966204559f1b270ac3e9 diff --git a/Makefile b/Makefile index b2d5924b..f3697861 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 -Wwrite-strings -CWARNINGS_FLAGS=$(CXXWARNINGS_FLAGS) +# List all subdirectories here. Each contains its own Makefile.local +subdirs = compat 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)