X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=test%2FMakefile.local;h=4a6a4b12e862253c3964ec203aa45734825d3f19;hb=d3b5533123293fdc1e4177f42018f085c03585c9;hp=1cb2402761a46acbd35557a78888b89c995f13bf;hpb=029a105da35f53d758713a06e90bb10b25f1003a;p=notmuch diff --git a/test/Makefile.local b/test/Makefile.local index 1cb24027..4a6a4b12 100644 --- a/test/Makefile.local +++ b/test/Makefile.local @@ -2,6 +2,33 @@ dir := test -.PHONY: test -test: all +extra_cflags += -I. + +smtp_dummy_srcs = \ + $(notmuch_compat_srcs) \ + $(dir)/smtp-dummy.c + +smtp_dummy_modules = $(smtp_dummy_srcs:.c=.o) + +$(dir)/arg-test: $(dir)/arg-test.o command-line-arguments.o util/libutil.a + $(call quiet,CC) -I. $^ -o $@ + +$(dir)/smtp-dummy: $(smtp_dummy_modules) + $(call quiet,CC) $^ -o $@ + +$(dir)/symbol-test: $(dir)/symbol-test.o + $(call quiet,CXX) $^ -o $@ -Llib -lnotmuch -lxapian + +.PHONY: test check + +test-binaries: $(dir)/arg-test $(dir)/smtp-dummy $(dir)/symbol-test + +test: all test-binaries @${dir}/notmuch-test $(OPTIONS) + +check: test + +SRCS := $(SRCS) $(smtp_dummy_srcs) +CLEAN := $(CLEAN) $(dir)/smtp-dummy $(dir)/smtp-dummy.o \ + $(dir)/symbol-test $(dir)/symbol-test.o \ + $(dir)/arg-test $(dir)/arg-test.o