mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18:08 +01:00
990e3988ce
Initially, provide a way to create "stub" messages in the notmuch database without corresponding files. This is essentially cut and paste from lib/database.cc. This is a seperate file since we don't want to export these symbols from libnotmuch or bloat the library with non-exported code.
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
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)/hex-xcode: $(dir)/hex-xcode.o command-line-arguments.o util/libutil.a
|
|
$(call quiet,CC) -I. $^ -o $@ -ltalloc
|
|
|
|
$(dir)/smtp-dummy: $(smtp_dummy_modules)
|
|
$(call quiet,CC) $^ -o $@
|
|
|
|
$(dir)/symbol-test: $(dir)/symbol-test.o
|
|
$(call quiet,CXX) $^ -o $@ -Llib -lnotmuch $(XAPIAN_LDFLAGS)
|
|
|
|
$(dir)/parse-time: $(dir)/parse-time.o parse-time-string/parse-time-string.o
|
|
$(call quiet,CC) $^ -o $@
|
|
|
|
.PHONY: test check
|
|
|
|
TEST_BINARIES=$(dir)/arg-test \
|
|
$(dir)/hex-xcode \
|
|
$(dir)/parse-time \
|
|
$(dir)/smtp-dummy \
|
|
$(dir)/symbol-test
|
|
|
|
test-binaries: $(TEST_BINARIES)
|
|
|
|
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 \
|
|
$(dir)/hex-xcode $(dir)/hex-xcode.o \
|
|
$(dir)/database-test.o \
|
|
$(dir)/parse-time $(dir)/parse-time.o \
|
|
$(dir)/corpus.mail $(dir)/test-results $(dir)/tmp.*
|