]> gitweb.michael.orlitzky.com - dead/htsn.git/blobdiff - makefile
Fix the profiling build and a few typos. Bump version to 0.0.5.
[dead/htsn.git] / makefile
index f94050d902109f9a5f8274ab370b2bddca4dbe8d..cb6659191697fc70d77a07df31c1c51a63fc840b 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,38 +1,45 @@
-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 *.log
+       rm -f *.log
+       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: