notmuch/test/Makefile.local
Carl Worth 22443de789 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.
2011-05-18 13:15:46 -07:00

20 lines
348 B
Makefile

# -*- makefile -*-
dir := test
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
test: all $(dir)/smtp-dummy
@${dir}/notmuch-test $(OPTIONS)
check: test
CLEAN := $(CLEAN) $(dir)/smtp-dummy