mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
8428e0465a
On FreeBSD, and probably anywhere else someone installed xapian to some other prefix, we need to use XAPIAN_LDFLAGS to make the linker can actually find libxapian.
35 lines
839 B
Makefile
35 lines
839 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 $(XAPIAN_LDFLAGS)
|
|
|
|
.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 \
|
|
$(dir)/corpus.mail $(dir)/test-results $(dir)/tmp.*
|