summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-01-25 23:44:33 +0100
committerPéter Diviánszky <divipp@gmail.com>2016-01-25 23:44:33 +0100
commitab5913ad707452e9037f1d498ff231faf4c0066f (patch)
treed10971d99d042f8914a3b34dc5c03e619ef2cc4e /Makefile
parent8cf45b115f3858cbcf3ed9fe89cb96ec265e8d79 (diff)
make the code more warning free
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 70257fed..4ae63821 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ all:
3 cabal install --constraint="indentation -trifecta" 3 cabal install --constraint="indentation -trifecta"
4 4
5repl: 5repl:
6 cd test && ghci -i../src runTests.hs 6 cd test && ghci -Wall -fno-warn-name-shadowing -fno-warn-unused-matches -fno-warn-missing-signatures -fno-warn-incomplete-patterns -fno-warn-overlapping-patterns -fno-warn-type-defaults -i../src runTests.hs
7 7
8coverage: 8coverage:
9 ./run-test-suite.sh --coverage 9 ./run-test-suite.sh --coverage