From: Michael Orlitzky Date: Sun, 9 May 2010 19:52:54 +0000 (-0400) Subject: Added a "test" makefile target. X-Git-Tag: 0.0.1~50 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=hath.git;a=commitdiff_plain;h=3c4efe66ab7cb5f528c5a711976ca7c8e56213cf Added a "test" makefile target. --- 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