From 3c4efe66ab7cb5f528c5a711976ca7c8e56213cf Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 9 May 2010 15:52:54 -0400 Subject: [PATCH] Added a "test" makefile target. --- makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/makefile b/makefile index 46c4826..b2265f8 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,7 @@ BIN=hath +.PHONY : test + all: $(BIN) $(BIN): src/*.hs @@ -13,3 +15,6 @@ clean: rm -f src/*.hi rm -f src/*.o rm -f *.prof + +test: + runghc -i"src" test/TestSuite.hs -- 2.43.2