X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fhtsn.git;a=blobdiff_plain;f=makefile;h=0c0048ece689489d14b184293ad271138cdae740;hp=2b7f6c92ba38937ae1fc084538b4333c8c4dd50d;hb=HEAD;hpb=93c998a40aa28b0aba023aaa040866ded7d87ae9 diff --git a/makefile b/makefile index 2b7f6c9..0c0048e 100644 --- a/makefile +++ b/makefile @@ -1,34 +1,46 @@ -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: src/*.hs - runghc Setup.hs configure --user - runghc Setup.hs hscolour --executables - runghc Setup.hs haddock --internal \ - --executables \ - --hyperlink-source +doc: + runghc Setup.hs configure --user --prefix=/ + runghc Setup.hs hscolour --all + runghc Setup.hs haddock --all \ + --hyperlink-source \ + --haddock-options="--ignore-all-exports" clean: runghc Setup.hs clean + rm -f *.log + rm -f *.xml + rm -rf tmp +$(TESTSUITE_BIN): $(PN).cabal $(SRCS) $(TEST_SRCS) + runghc Setup.hs configure --user --enable-tests --prefix=/ + runghc Setup.hs build -test: $(BIN) +test: $(BIN) $(TESTSUITE_BIN) runghc Setup.hs test dist: - runghc Setup.hs configure - runghc Setup.hs sdist + runghc Setup.hs configure --prefix=/ + TAR_OPTIONS="--format=ustar" runghc Setup.hs sdist hlint: hlint --ignore="Use camelCase" \