]> gitweb.michael.orlitzky.com - hath.git/blob - makefile
Use test-framework for the tests, and bump some dependencies.
[hath.git] / makefile
1 .PHONY : test
2
3 hath: src/*.hs
4 runghc Setup.hs clean
5 runghc Setup.hs configure --user
6 runghc Setup.hs build
7
8 profile: src/*.hs
9 runghc Setup.hs clean
10 runghc Setup.hs configure --user --enable-executable-profiling
11 runghc Setup.hs build
12
13 clean:
14 runghc Setup.hs clean
15
16 test:
17 runghc -i"src" test/TestSuite.hs