]> gitweb.michael.orlitzky.com - hath.git/blob - makefile
Prepare for version 0.0.1.
[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
18
19 dist:
20 runghc Setup.hs configure
21 runghc Setup.hs sdist