From e96f7ca585c527b9543b340f5184a6a2ea656135 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Thu, 15 Apr 2010 14:56:21 -0700 Subject: [PATCH] Makefile: Add a "make test" target. I just wasted far too much time looking for a bug that wasn't actually there only because I hadn't recompiled before running the test suite. Now we can take advantage of actual dependency information to force a rebuild for "make test". --- Makefile.local | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile.local b/Makefile.local index 4a8142f0..fed32c07 100644 --- a/Makefile.local +++ b/Makefile.local @@ -45,6 +45,10 @@ ifeq ($(shell cat .first-build-message),) endif endif +.PHONY: test +test: all + @./test/notmuch-test + $(TAR_FILE): git archive --format=tar --prefix=$(PACKAGE)-$(VERSION)/ HEAD > $(TAR_FILE).tmp echo $(VERSION) > version -- 2.43.0