From 1fe7483d8d03fd981fd09e5770efbea5b9304da9 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Fri, 5 Nov 2010 17:50:12 -0700 Subject: [PATCH] Makefile: Support "make check" as alias for "make test" I'm told that some people have been trained by autotools to expect this target name. --- test/Makefile.local | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/Makefile.local b/test/Makefile.local index cf7abc74..7b602bcf 100644 --- a/test/Makefile.local +++ b/test/Makefile.local @@ -5,8 +5,10 @@ dir := test $(dir)/smtp-dummy: $(dir)/smtp-dummy.c $(call quiet,CC) $^ -o $@ -.PHONY: test +.PHONY: test check test: all $(dir)/smtp-dummy @${dir}/notmuch-test $(OPTIONS) +check: test + CLEAN := $(CLEAN) $(dir)/smtp-dummy -- 2.43.0