]> gitweb.michael.orlitzky.com - dead/htsn.git/blobdiff - makefile
Add the *.cabal file to the `make doc` dependencies.
[dead/htsn.git] / makefile
index 5c43e4b383b4136545bd64f9c5f3926a5a92ffc5..8710287b79cb52e0978df8e004bddc756ae3056f 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,8 +1,9 @@
 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 build
@@ -12,7 +13,7 @@ profile: src/*.hs
        runghc Setup.hs configure --user --enable-executable-profiling
        runghc Setup.hs build
 
-doc: src/*.hs
+doc: *.cabal src/*.hs
        runghc Setup.hs configure --user
        runghc Setup.hs hscolour --executables
        runghc Setup.hs haddock --internal    \
@@ -21,9 +22,15 @@ 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
+       runghc Setup.hs build
 
-test: $(BIN)
+test: $(BIN) $(TESTSUITE_BIN)
        runghc Setup.hs test
 
 dist: