X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=07530a6efb6c04cf9ecf92040b64b4b4e61b04d1;hb=76cf3eee776d35ba2b18dd0d07df7496a083ae3a;hp=1be5000fa3b35e2eb13c4dac70f340994ddc1c83;hpb=629f04d64544bf942d9ee3283b9f99fa7e5c9d57;p=dead%2Fhtsn-import.git diff --git a/makefile b/makefile index 1be5000..07530a6 100644 --- 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