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.
This commit is contained in:
Carl Worth 2011-05-18 13:15:46 -07:00
parent 7ca4db2b46
commit 22443de789

View file

@ -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