X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=a0d4de75757bdeb7b9b11b565d0a098802793491;hb=39a22e11952c31a1f058c1e457be471381eff6fa;hp=b31b678e624d2c6397c62af401620751edeb9206;hpb=9a17070e1d71abcca8fed41d52438bbc893ce3e2;p=dead%2Fhtsn.git diff --git a/makefile b/makefile index b31b678..a0d4de7 100644 --- a/makefile +++ b/makefile @@ -1,19 +1,24 @@ -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 src/TSN/*.hs +$(BIN): $(PN).cabal $(SRCS) runghc Setup.hs clean 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 --prefix=/ + runghc Setup.hs configure --user \ + --enable-executable-profiling \ + --prefix=/ runghc Setup.hs build -doc: *.cabal src/*.hs +doc: $(PN).cabal $(SRCS) runghc Setup.hs configure --user --prefix=/ runghc Setup.hs hscolour --executables runghc Setup.hs haddock --internal \ @@ -26,7 +31,7 @@ clean: rm -f *.xml rm -rf tmp -$(TESTSUITE_BIN): src/*.hs test/TestSuite.hs +$(TESTSUITE_BIN): $(PN).cabal $(SRCS) $(TEST_SRCS) runghc Setup.hs configure --user --enable-tests --prefix=/ runghc Setup.hs build