X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=7e097877ad6982f435373c986584a91d2fa0e548;hb=60aea8c7765bf2382b1d24d039f3951e00434e3c;hp=d1b5052c3b2f59c1460a9083346d3c1486a80a72;hpb=a4eb5f096c486cb94b1e8a25de7bc16879cab6e5;p=dead%2Fhtsn.git diff --git a/makefile b/makefile index d1b5052..7e09787 100644 --- a/makefile +++ b/makefile @@ -1,28 +1,28 @@ -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): $(SRCS) +$(BIN): $(PN).cabal $(SRCS) runghc Setup.hs clean runghc Setup.hs configure --user --prefix=/ runghc Setup.hs build -profile: $(SRCS) +profile: $(PN).cabal $(SRCS) runghc Setup.hs clean runghc Setup.hs configure --user \ --enable-executable-profiling \ --prefix=/ runghc Setup.hs build -doc: *.cabal $(SRCS) +doc: runghc Setup.hs configure --user --prefix=/ - runghc Setup.hs hscolour --executables - runghc Setup.hs haddock --internal \ - --executables \ - --hyperlink-source + runghc Setup.hs hscolour --all + runghc Setup.hs haddock --all \ + --haddock-options="--ignore-all-exports" clean: runghc Setup.hs clean @@ -30,7 +30,7 @@ clean: rm -f *.xml rm -rf tmp -$(TESTSUITE_BIN): $(SRCS) $(TEST_SRCS) +$(TESTSUITE_BIN): $(PN).cabal $(SRCS) $(TEST_SRCS) runghc Setup.hs configure --user --enable-tests --prefix=/ runghc Setup.hs build