aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/Makefile.local
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Makefile.local')
-rw-r--r--lib/Makefile.local31
1 files changed, 17 insertions, 14 deletions
diff --git a/lib/Makefile.local b/lib/Makefile.local
index b5182bc4..43882a3d 100644
--- a/lib/Makefile.local
+++ b/lib/Makefile.local
@@ -1,19 +1,22 @@
dir=lib
-lib_notmuch_modules = \
- $(dir)/database.o \
- $(dir)/index.o \
- $(dir)/$(dir)sha1.o \
- $(dir)/message.o \
- $(dir)/message-file.o \
- $(dir)/query.o \
- $(dir)/sha1.o \
- $(dir)/tags.o \
- $(dir)/thread.o \
- $(dir)/xutil.o
+libnotmuch_c_srcs = \
+ $(dir)/libsha1.c \
+ $(dir)/message-file.c \
+ $(dir)/sha1.c \
+ $(dir)/tags.c \
+ $(dir)/xutil.c
-$(dir)/notmuch.a: $(lib_notmuch_modules)
+libnotmuch_cxx_srcs = \
+ $(dir)/database.cc \
+ $(dir)/index.cc \
+ $(dir)/message.cc \
+ $(dir)/query.cc \
+ $(dir)/thread.cc
+
+libnotmuch_modules = $(libnotmuch_c_srcs:.c=.o) $(libnotmuch_cxx_srcs:.cc=.o)
+$(dir)/notmuch.a: $(libnotmuch_modules)
$(AR) rcs $@ $^
-SRCS := $(SRCS) lib/*.c lib/*.cc
-CLEAN := $(CLEAN) $(dir)/*.o $(dir)/notmuch.a
+SRCS := $(SRCS) $(libnotmuch_c_srcs) $(libnotmuch_cxx_srcs)
+CLEAN := $(CLEAN) $(libnotmuch_modules) $(dir)/notmuch.a