]> gitweb.michael.orlitzky.com - hath.git/blobdiff - makefile
hath.cabal: drop a word and a period from the synopsis
[hath.git] / makefile
index 8605a8920e23cb967fa940229ba8301e32623328..d1e16e43afe47c14c311c185aa8dec9cac1ae371 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,27 +1,62 @@
-GHC_WARNINGS := -Wall
-GHC_WARNINGS += -fwarn-hi-shadowing
-GHC_WARNINGS += -fwarn-missing-signatures
-GHC_WARNINGS += -fwarn-name-shadowing
-GHC_WARNINGS += -fwarn-orphans
-GHC_WARNINGS += -fwarn-type-defaults
+PN   = hath
+BIN  = dist/build/$(PN)/$(PN)
+SRCS = $(shell find src/ -type f -name '*.hs')
 
-BIN=hath
+# Append these warnings to the HCFLAGS environment variable that gets
+# passed as options to GHC. We want to see the warnings while developing
+# but don't want them hard-coded in the cabal file for end users.
+HCFLAGS += -Weverything \
+           -Wno-implicit-prelude \
+           -Wno-safe \
+           -Wno-unsafe \
+           -Wno-all-missed-specialisations \
+           -Wno-prepositive-qualified-module \
+           -Wno-missing-safe-haskell-mode \
+           -Wno-missing-deriving-strategies \
+           -Wno-missing-kind-signatures \
+           -rtsopts \
+           -threaded
 
-.PHONY : test
+.PHONY : dist hlint
 
-all: $(BIN)
+$(BIN): $(PN).cabal $(SRCS)
+       runghc Setup.hs configure --user
+       runghc Setup.hs build --ghc-options="${HCFLAGS}"
 
-$(BIN): src/*.hs
-       ghc -O2 $(GHC_WARNINGS) --make -o bin/${BIN} src/*.hs
+doc: $(PN).cabal $(SRCS)
+       runghc Setup.hs haddock --all \
+                               --hyperlink-source \
+                                --haddock-options="--ignore-all-exports"
 
-profile: src/*.hs
-       ghc -O2 $(GHC_WARNINGS) -prof -auto-all --make -o bin/$(BIN) src/*.hs
+
+#
+# Tests
+#
+TESTSUITE_BIN = dist/build/testsuite/testsuite
+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 --ghc-options="${HCFLAGS}"
+
+
+check: $(BIN) $(TESTSUITE_BIN)
+       runghc Setup.hs test
+
+
+#
+# Misc
+#
 
 clean:
-       rm -f bin/$(BIN)
-       rm -f src/*.hi
-       rm -f src/*.o
-       rm -f *.prof
+       runghc Setup.hs clean
+
+dist:
+       runghc Setup.hs configure
+       TAR_OPTIONS="--format=ustar" runghc Setup.hs sdist
 
-test:
-       runghc -i"src" test/TestSuite.hs
+hlint:
+       hlint --ignore="Use camelCase"     \
+             --ignore="Redundant bracket" \
+             --color                      \
+             src