X-Git-Url: http://gitweb.michael.orlitzky.com/?p=hath.git;a=blobdiff_plain;f=makefile;h=b2265f8b28c3351ab088bceea2b6c3a1204c251c;hp=46c4826c8ef6e1e513aeb2330b7ee0642153c02d;hb=3c4efe66ab7cb5f528c5a711976ca7c8e56213cf;hpb=ea9bf8a98dbfc40ebad2af43b6594bac0a852dcd 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