aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/Makefile.local
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2011-05-18 13:15:46 -0700
committerGravatar Carl Worth <cworth@cworth.org>2011-05-18 13:15:46 -0700
commit22443de7891ca54cc199c30bdaf2725395062462 (patch)
treefa4c0b52496508af6ff83ae43b982279d181f82c /test/Makefile.local
parent7ca4db2b46dc843b8294d7ff44dced9f74c81c1e (diff)
test: Link to compat files when building program during "make test"
The compilation of the smtp-dummy program would fail if a build was attempted on a system without getline. Fix this by simply including the existing notmuch_compat_srcs variable when constructing the list of source files for compiling smtp-dummy.
Diffstat (limited to 'test/Makefile.local')
-rw-r--r--test/Makefile.local8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/Makefile.local b/test/Makefile.local
index 7b602bcf..8eb04330 100644
--- a/test/Makefile.local
+++ b/test/Makefile.local
@@ -2,7 +2,13 @@
dir := test
-$(dir)/smtp-dummy: $(dir)/smtp-dummy.c
+smtp_dummy_srcs = \
+ $(notmuch_compat_srcs) \
+ $(dir)/smtp-dummy.c
+
+smtp_dummy_modules = $(smtp_dummy_srcs:.c=.o)
+
+$(dir)/smtp-dummy: $(smtp_dummy_modules)
$(call quiet,CC) $^ -o $@
.PHONY: test check