]> gitweb.michael.orlitzky.com - dead/htsn-import.git/blobdiff - makefile
Don't call clean before every compile (they're getting slow).
[dead/htsn-import.git] / makefile
index 1be5000fa3b35e2eb13c4dac70f340994ddc1c83..d71ce4d002bea6e2f86d1fe5bb65ac94769971b9 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,20 +1,20 @@
 PN = htsn-import
 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): $(PN).cabal src/*.hs src/TSN/*.hs
-       runghc Setup.hs clean
+$(BIN): $(PN).cabal $(SRCS)
        runghc Setup.hs configure --user --prefix=/
        runghc Setup.hs build
 
-profile: $(PN).cabal src/*.hs src/TSN/*.hs
-       runghc Setup.hs clean
+profile: $(PN).cabal $(SRCS)
        runghc Setup.hs configure --user --enable-executable-profiling --prefix=/
        runghc Setup.hs build
 
-doc: $(PN).cabal src/*.hs src/TSN/*.hs
+doc: $(PN).cabal $(SRCS)
        runghc Setup.hs configure --user --prefix=/
        runghc Setup.hs hscolour --executables
        runghc Setup.hs haddock --internal    \
@@ -27,7 +27,7 @@ clean:
        rm -f *.xml
        rm -rf tmp
 
-$(TESTSUITE_BIN): $(PN).cabal src/*.hs test/TestSuite.hs
+$(TESTSUITE_BIN): $(PN).cabal $(SRCS) $(TEST_SRCS)
        runghc Setup.hs configure --user --enable-tests --prefix=/
        runghc Setup.hs build