]> gitweb.michael.orlitzky.com - haeredes.git/blobdiff - makefile
Fix the output of a network-dependent doctest.
[haeredes.git] / makefile
index a5901870355a7dcede840d2224c2315eb1b06188..b64a42da1eb2e36f129ec1edfe628c52a2faa3ea 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,28 +1,47 @@
-BIN           = dist/build/haeredes/haeredes
-TESTSUITE_BIN = dist/build/testsuite/testsuite
+PN            = haeredes
+BIN           = dist/build/$(PN)/$(PN)
+SRCS          = $(shell find src/ -type f -name '*.hs')
 
-.PHONY : dist doc test
+.PHONY : dist hlint
 
-$(BIN): src/*.hs
-       runghc Setup.hs clean
+$(BIN): $(PN).cabal $(SRCS)
        runghc Setup.hs configure --user
        runghc Setup.hs build
 
-$(TESTSUITE_BIN): src/*.hs test/TestSuite.hs
-       runghc Setup.hs configure --user --enable-tests
+doc: $(PN).cabal $(SRCS)
+       runghc Setup.hs hscolour --all
+       runghc Setup.hs haddock  --all \
+                                --hyperlink-source \
+                                 --haddock-options="--ignore-all-exports"
+
+
+#
+# Tests
+#
+TESTSUITE_BIN = dist/build/testsuite/testsuite
+DOCTESTS_BIN  = dist/build/doctests/doctests
+TEST_SRCS := $(shell find test/ -type f -name '*.hs')
+
+$(TESTSUITE_BIN): $(PN).cabal $(SRCS) $(TEST_SRCS)
+       runghc Setup.hs configure --user --enable-tests --prefix=/
        runghc Setup.hs build
 
-clean:
-       runghc Setup.hs clean
 
-test: $(BIN) $(TESTSUITE_BIN)
+$(DOCTESTS_BIN): $(PN).cabal $(SRCS) $(TEST_SRCS)
+       runghc Setup.hs configure --user --enable-tests
+       runghc Setup.hs build
+
+test: $(BIN) $(TESTSUITE_BIN) $(DOCTESTS_BIN)
        runghc Setup.hs test
 
-doc:
-       runghc Setup.hs hscolour --executables
-       runghc Setup.hs haddock --internal    \
-                               --executables \
-                               --hyperlink-source
+
+#
+# Misc
+#
+
+dist:
+       runghc Setup.hs configure
+       TAR_OPTIONS="--format=ustar" runghc Setup.hs sdist
 
 hlint:
        hlint --ignore="Use camelCase"     \
@@ -30,6 +49,8 @@ hlint:
              --color                      \
              src
 
-dist:
-       runghc Setup.hs configure
-       runghc Setup.hs sdist
+clean:
+       runghc Setup.hs clean
+       find ./ -name '*.prof' -delete
+       find ./ -name '*.o' -delete
+       find ./ -name '*.hi' -delete