X-Git-Url: http://gitweb.michael.orlitzky.com/?p=hath.git;a=blobdiff_plain;f=makefile;h=5d42778f0942b95ef9a0266ed324f43ba470eadb;hp=b2265f8b28c3351ab088bceea2b6c3a1204c251c;hb=7622c66d1bb0592ae6cd5b9c6092ff2e0490c4a1;hpb=3c4efe66ab7cb5f528c5a711976ca7c8e56213cf diff --git a/makefile b/makefile index b2265f8..5d42778 100644 --- a/makefile +++ b/makefile @@ -1,20 +1,42 @@ -BIN=hath +BIN = dist/build/hath/hath +TESTSUITE_BIN = dist/build/testsuite/testsuite -.PHONY : test - -all: $(BIN) +.PHONY : test dist hlint $(BIN): src/*.hs - ghc -O2 -Wall --make -o bin/${BIN} src/*.hs + runghc Setup.hs clean + runghc Setup.hs configure --user + runghc Setup.hs build profile: src/*.hs - ghc -O2 -Wall -prof -auto-all --make -o bin/$(BIN) src/*.hs + runghc Setup.hs clean + runghc Setup.hs configure --user --enable-executable-profiling + runghc Setup.hs build + +doc: src/*.hs + runghc Setup.hs configure --user + runghc Setup.hs hscolour --executables + runghc Setup.hs haddock --internal \ + --executables \ + --hyperlink-source clean: - rm -f bin/$(BIN) - rm -f src/*.hi - rm -f src/*.o - rm -f *.prof + runghc Setup.hs clean + + +$(TESTSUITE_BIN): src/*.hs test/TestSuite.hs + runghc Setup.hs configure --user --enable-tests + runghc Setup.hs build + +test: $(BIN) $(TESTSUITE_BIN) + runghc Setup.hs test + +dist: + runghc Setup.hs configure + runghc Setup.hs sdist -test: - runghc -i"src" test/TestSuite.hs +hlint: + hlint --ignore="Use camelCase" \ + --ignore="Redundant bracket" \ + --color \ + src