2010-09-17 12:10:54 -07:00
|
|
|
# -*- makefile -*-
|
|
|
|
|
|
|
|
dir := test
|
|
|
|
|
2011-05-18 13:15:46 -07:00
|
|
|
smtp_dummy_srcs = \
|
|
|
|
$(notmuch_compat_srcs) \
|
|
|
|
$(dir)/smtp-dummy.c
|
|
|
|
|
|
|
|
smtp_dummy_modules = $(smtp_dummy_srcs:.c=.o)
|
|
|
|
|
|
|
|
$(dir)/smtp-dummy: $(smtp_dummy_modules)
|
2010-10-27 10:42:46 -07:00
|
|
|
$(call quiet,CC) $^ -o $@
|
|
|
|
|
2010-11-05 17:50:12 -07:00
|
|
|
.PHONY: test check
|
2010-10-27 10:42:46 -07:00
|
|
|
test: all $(dir)/smtp-dummy
|
2010-09-20 14:06:38 -07:00
|
|
|
@${dir}/notmuch-test $(OPTIONS)
|
2010-10-27 10:42:46 -07:00
|
|
|
|
2010-11-05 17:50:12 -07:00
|
|
|
check: test
|
|
|
|
|
2010-10-27 10:42:46 -07:00
|
|
|
CLEAN := $(CLEAN) $(dir)/smtp-dummy
|