X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=2fb6a0379991140d546cdc282bec5203dc099b0a;hb=ae4540dc27f564fe14b8a3d0118e183f3c75d715;hp=5c43e4b383b4136545bd64f9c5f3926a5a92ffc5;hpb=d4d924b26e451aec9ad84b6d9d376ba2aeab3422;p=dead%2Fhtsn.git diff --git a/makefile b/makefile index 5c43e4b..2fb6a03 100644 --- a/makefile +++ b/makefile @@ -1,19 +1,20 @@ BIN = dist/build/htsn/htsn +TESTSUITE_BIN = dist/build/testsuite/testsuite .PHONY : dist hlint -$(BIN): src/*.hs +$(BIN): src/*.hs src/TSN/*.hs runghc Setup.hs clean - runghc Setup.hs configure --user + runghc Setup.hs configure --user --prefix=/ runghc Setup.hs build profile: src/*.hs runghc Setup.hs clean - runghc Setup.hs configure --user --enable-executable-profiling + runghc Setup.hs configure --user --enable-executable-profiling --prefix=/ runghc Setup.hs build -doc: src/*.hs - runghc Setup.hs configure --user +doc: *.cabal src/*.hs + runghc Setup.hs configure --user --prefix=/ runghc Setup.hs hscolour --executables runghc Setup.hs haddock --internal \ --executables \ @@ -21,13 +22,19 @@ doc: src/*.hs clean: runghc Setup.hs clean + rm -f *.log + rm -f *.xml + rm -rf tmp +$(TESTSUITE_BIN): src/*.hs test/TestSuite.hs + runghc Setup.hs configure --user --enable-tests --prefix=/ + runghc Setup.hs build -test: $(BIN) +test: $(BIN) $(TESTSUITE_BIN) runghc Setup.hs test dist: - runghc Setup.hs configure + runghc Setup.hs configure --prefix= runghc Setup.hs sdist hlint: