]> gitweb.michael.orlitzky.com - dead/htsn-import.git/blobdiff - makefile
Move the XML modules into the XML subdirectory.
[dead/htsn-import.git] / makefile
index 1be5000fa3b35e2eb13c4dac70f340994ddc1c83..07530a6efb6c04cf9ecf92040b64b4b4e61b04d1 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,20 +1,22 @@
 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
+$(BIN): $(PN).cabal $(SRCS)
        runghc Setup.hs clean
        runghc Setup.hs configure --user --prefix=/
        runghc Setup.hs build
 
-profile: $(PN).cabal src/*.hs src/TSN/*.hs
+profile: $(PN).cabal $(SRCS)
        runghc Setup.hs clean
        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 +29,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