X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=Makefile;h=91ab9c02cd623f583e03b5b241858f4b0fb40f43;hb=c5dccd851a8b79d8cedbfc8f2d2b8f9be2b7fa5a;hp=a9d91d8667ad83e49b018c6c80e79be2cccd9cd3;hpb=3cdb24d38aaa4cf043526a946e0a4ae290a6881d;p=obsolete%2Fnotmuch-old diff --git a/Makefile b/Makefile index a9d91d86..91ab9c02 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,3 @@ -PROGS=notmuch - WARN_FLAGS=-Wall -Wextra -Wmissing-declarations -Wwrite-strings -Wswitch-enum NOTMUCH_DEPENDS_FLAGS=-I./lib `pkg-config --cflags glib-2.0 gmime-2.4 talloc` @@ -11,22 +9,9 @@ NOTMUCH_CXXFLAGS=$(WARN_FLAGS) -O0 -g $(NOTMUCH_CXX_DEPENDS_FLAGS) NOTMUCH_LDFLAGS=`pkg-config --libs glib-2.0 gmime-2.4 talloc` \ `xapian-config --libs` -LIBRARY= \ - lib/database.o \ - lib/index.o \ - lib/libsha1.o \ - lib/message.o \ - lib/message-file.o \ - lib/query.o \ - lib/sha1.o \ - lib/tags.o \ - lib/thread.o \ - lib/xutil.o - -MAIN= \ - notmuch.o - -all: $(PROGS) +# Include our local Makfile.local first so that its first target is default +include Makefile.local +include lib/Makefile.local %.o: %.cc $(CXX) -c $(CFLAGS) $(CXXFLAGS) $(NOTMUCH_CXXFLAGS) $< -o $@ @@ -34,22 +19,14 @@ all: $(PROGS) %.o: %.c $(CC) -c $(CFLAGS) $(NOTMUCH_CFLAGS) $< -o $@ -notmuch: $(MAIN) $(LIBRARY) - $(CC) $(NOTMUCH_LDFLAGS) $^ -o $@ - -.depends: *.c lib/*.c lib/*.cc +.depends: $(SRCS) $(CXX) -M $(CPPFLAGS) $(NOTMUCH_DEPENDS_FLAGS) \ $(NOTMUCH_CXX_DEPENDS_FLAGS) $^ > $@ -include .depends -notmuch.1.gz: - gzip --stdout notmuch.1 > notmuch.1.gz - -install: all notmuch.1.gz - install -C -D notmuch $(DESTDIR)/usr/bin/notmuch - install -C -D notmuch.1.gz $(DESTDIR)/usr/share/man/man1 - install -C -D notmuch-completion.bash \ - $(DESTDIR)/etc/bash_completion.d/notmuch +CLEAN := $(CLEAN) .depends clean: - rm -f $(PROGS) lib/*.o *.o .depends + rm -f $(CLEAN) + +