mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
1fe7483d8d
I'm told that some people have been trained by autotools to expect this target name.
14 lines
230 B
Makefile
14 lines
230 B
Makefile
# -*- makefile -*-
|
|
|
|
dir := test
|
|
|
|
$(dir)/smtp-dummy: $(dir)/smtp-dummy.c
|
|
$(call quiet,CC) $^ -o $@
|
|
|
|
.PHONY: test check
|
|
test: all $(dir)/smtp-dummy
|
|
@${dir}/notmuch-test $(OPTIONS)
|
|
|
|
check: test
|
|
|
|
CLEAN := $(CLEAN) $(dir)/smtp-dummy
|