]> gitweb.michael.orlitzky.com - dead/halcyon.git/blob - makefile
Replace necessary NoMonomorphism language pragma.
[dead/halcyon.git] / makefile
1 .PHONY : doc test
2
3 twat: src/*.hs src/Twitter/*.hs
4 runghc Setup.hs clean
5 runghc Setup.hs configure --user
6 runghc Setup.hs build
7
8 clean:
9 runghc Setup.hs clean
10
11 test:
12 runghc -i"src" test/TestSuite.hs
13
14 # Neither 'haddock' nor 'hscolour' seem to work properly.
15 doc:
16 runghc Setup.hs hscolour --executables
17 runghc Setup.hs haddock --internal \
18 --executables \
19 --hyperlink-source
20
21 hlint:
22 hlint --ignore="Use camelCase" \
23 --ignore="Redundant bracket" \
24 --color \
25 src