BIN=hath .PHONY : test all: $(BIN) $(BIN): src/*.hs ghc -O2 -Wall --make -o bin/${BIN} src/*.hs profile: src/*.hs ghc -O2 -Wall -prof -auto-all --make -o bin/$(BIN) src/*.hs clean: rm -f bin/$(BIN) rm -f src/*.hi rm -f src/*.o rm -f *.prof test: runghc -i"src" test/TestSuite.hs