X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=7f9a19952583a4e0bdde1cfbbdc98f52b1e4623f;hb=85952e8f3b018233ef3aff980219d8e97f5e31ba;hp=8710287b79cb52e0978df8e004bddc756ae3056f;hpb=fdd40277556133bd14cf0a3f13749f4663b5f3ba;p=dead%2Fhtsn.git diff --git a/makefile b/makefile index 8710287..7f9a199 100644 --- a/makefile +++ b/makefile @@ -1,20 +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 +.PHONY : dist doc hlint -$(BIN): src/*.hs src/TSN/*.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: *.cabal src/*.hs - runghc Setup.hs configure --user +doc: + runghc Setup.hs configure --user --prefix=/ runghc Setup.hs hscolour --executables runghc Setup.hs haddock --internal \ --executables \ @@ -26,15 +31,15 @@ clean: rm -f *.xml rm -rf tmp -$(TESTSUITE_BIN): src/*.hs test/TestSuite.hs - runghc Setup.hs configure --user --enable-tests +$(TESTSUITE_BIN): $(PN).cabal $(SRCS) $(TEST_SRCS) + runghc Setup.hs configure --user --enable-tests --prefix=/ runghc Setup.hs build test: $(BIN) $(TESTSUITE_BIN) runghc Setup.hs test dist: - runghc Setup.hs configure + runghc Setup.hs configure --prefix=/ runghc Setup.hs sdist hlint: