mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
22443de789
The compilation of the smtp-dummy program would fail if a build was attempted on a system without getline. Fix this by simply including the existing notmuch_compat_srcs variable when constructing the list of source files for compiling smtp-dummy.
20 lines
348 B
Makefile
20 lines
348 B
Makefile
# -*- makefile -*-
|
|
|
|
dir := test
|
|
|
|
smtp_dummy_srcs = \
|
|
$(notmuch_compat_srcs) \
|
|
$(dir)/smtp-dummy.c
|
|
|
|
smtp_dummy_modules = $(smtp_dummy_srcs:.c=.o)
|
|
|
|
$(dir)/smtp-dummy: $(smtp_dummy_modules)
|
|
$(call quiet,CC) $^ -o $@
|
|
|
|
.PHONY: test check
|
|
test: all $(dir)/smtp-dummy
|
|
@${dir}/notmuch-test $(OPTIONS)
|
|
|
|
check: test
|
|
|
|
CLEAN := $(CLEAN) $(dir)/smtp-dummy
|