]> gitweb.michael.orlitzky.com - dead/htsn.git/blobdiff - makefile
Move Logging, Report, and Terminal into their own library htsn-common and depend...
[dead/htsn.git] / makefile
index 5c43e4b383b4136545bd64f9c5f3926a5a92ffc5..a0d4de75757bdeb7b9b11b565d0a098802793491 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,19 +1,25 @@
-BIN = dist/build/htsn/htsn
+PN = htsn
+BIN = dist/build/$(PN)/$(PN)
+TESTSUITE_BIN = dist/build/testsuite/testsuite
+SRCS := $(shell find src/ -type f -name '*.hs')
+TEST_SRCS := $(shell find test/ -type f -name '*.hs')
 
 .PHONY : dist hlint
 
-$(BIN): src/*.hs
+$(BIN): $(PN).cabal $(SRCS)
        runghc Setup.hs clean
-       runghc Setup.hs configure --user
+       runghc Setup.hs configure --user --prefix=/
        runghc Setup.hs build
 
-profile: src/*.hs
+profile: $(PN).cabal $(SRCS)
        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: $(PN).cabal $(SRCS)
+       runghc Setup.hs configure --user --prefix=/
        runghc Setup.hs hscolour --executables
        runghc Setup.hs haddock --internal    \
                                --executables \
@@ -21,13 +27,19 @@ doc: src/*.hs
 
 clean:
        runghc Setup.hs clean
+       rm -f *.log
+       rm -f *.xml
+       rm -rf tmp
 
+$(TESTSUITE_BIN): $(PN).cabal $(SRCS) $(TEST_SRCS)
+       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: