]> gitweb.michael.orlitzky.com - dead/htsn.git/blobdiff - makefile
Minor documentation fixes; create all (even internal) docs with `make doc`.
[dead/htsn.git] / makefile
index b31b678e624d2c6397c62af401620751edeb9206..7e097877ad6982f435373c986584a91d2fa0e548 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,24 +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): 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:
        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
@@ -26,7 +30,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