mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
5c12ee4b5d
This adds source files in compat, test, and util to SRCS so that the top-level Makefile.local will generate dependency files for them.
34 lines
774 B
Makefile
34 lines
774 B
Makefile
# -*- makefile -*-
|
|
|
|
dir := test
|
|
|
|
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
|