X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=Makefile;h=f3697861e75d540f20954a46589284a3db10e278;hp=34716c294bb6233ab6ec2e17ca377a65da2c177a;hb=bb5211684654b7cf54f842990a733a64fe01d612;hpb=cd4a8734d3bb151df70d51a84903bff994439b05 diff --git a/Makefile b/Makefile index 34716c29..f3697861 100644 --- a/Makefile +++ b/Makefile @@ -1,24 +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: -MYCFLAGS=-Wall -O0 -g `pkg-config --cflags glib-2.0` -MYCXXFLAGS=$(MYCFLAGS) `xapian-config --cxxflags` +# List all subdirectories here. Each contains its own Makefile.local +subdirs = compat emacs lib -MYLDFLAGS=`pkg-config --libs glib-2.0` `xapian-config --libs` +# We make all targets depend on the Makefiles themselves. +global_deps = Makefile Makefile.local \ + $(subdirs:%=%/Makefile) $(subdirs:%=%/Makefile.local) -all: $(PROGS) - -%.o: %.cc - $(CXX) -c $(CXXFLAGS) $(MYCXXFLAGS) $< -o $@ - -%.o: %.c - $(CC) -c $(CFLAGS) $(MYCFLAGS) $< -o $@ - -notmuch: notmuch.o database.o date.o message-file.o xutil.o - $(CC) $(MYLDFLAGS) $^ -o $@ - -Makefile.dep: *.c *.cc - $(CC) -M $(CPPFLAGS) $(MYCFLAGS) $^ > $@ --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)