]> gitweb.michael.orlitzky.com - dead/htsn.git/blobdiff - makefile
Bump to v0.1.1 and allow >= network-2.6.
[dead/htsn.git] / makefile
index d1b5052c3b2f59c1460a9083346d3c1486a80a72..0c0048ece689489d14b184293ad271138cdae740 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,28 +1,29 @@
-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 \
+                               --hyperlink-source \
+                               --haddock-options="--ignore-all-exports"
 
 clean:
        runghc Setup.hs clean
@@ -30,7 +31,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
 
@@ -39,7 +40,7 @@ test: $(BIN) $(TESTSUITE_BIN)
 
 dist:
        runghc Setup.hs configure --prefix=/
-       runghc Setup.hs sdist
+       TAR_OPTIONS="--format=ustar" runghc Setup.hs sdist
 
 hlint:
        hlint --ignore="Use camelCase"     \