]> git.notmuchmail.org Git - notmuch/blobdiff - lib/Makefile.local
lib: Treat NULL as a valid (and empty) notmuch_filenames_t iterator.
[notmuch] / lib / Makefile.local
index 43882a3dfcb2dbdb9567ae9e3b9112615f27f219..70489e17207b13c8dad862ff63221277cf65a191 100644 (file)
@@ -1,14 +1,17 @@
 dir=lib
+extra_cflags += -I$(dir)
 
 libnotmuch_c_srcs =            \
        $(dir)/libsha1.c        \
        $(dir)/message-file.c   \
+       $(dir)/messages.c       \
        $(dir)/sha1.c           \
        $(dir)/tags.c           \
        $(dir)/xutil.c
 
 libnotmuch_cxx_srcs =          \
        $(dir)/database.cc      \
+       $(dir)/directory.cc     \
        $(dir)/index.cc         \
        $(dir)/message.cc       \
        $(dir)/query.cc         \
@@ -16,7 +19,7 @@ libnotmuch_cxx_srcs =         \
 
 libnotmuch_modules = $(libnotmuch_c_srcs:.c=.o) $(libnotmuch_cxx_srcs:.cc=.o)
 $(dir)/notmuch.a: $(libnotmuch_modules)
-       $(AR) rcs $@ $^
+       $(call quiet,AR) rcs $@ $^
 
 SRCS  := $(SRCS) $(libnotmuch_c_srcs) $(libnotmuch_cxx_srcs)
 CLEAN := $(CLEAN) $(libnotmuch_modules) $(dir)/notmuch.a