]> gitweb.michael.orlitzky.com - dead/htnef.git/blob - makefile
Initial commit.
[dead/htnef.git] / makefile
1 all: htnef
2
3 htnef: src/*.hs src/tnef/*.hs
4 ghc -O2 -Wall --make -fglasgow-exts -o bin/htnef src/*.hs src/tnef/*.hs
5
6 profile: src/*.hs src/tnef/*.hs
7 ghc -O2 -Wall -prof -auto-all --make -fglasgow-exts -o bin/htnef src/*.hs src/tnef/*.hs
8
9 clean:
10 rm -f bin/htnef
11 rm -f src/*.hi
12 rm -f src/*.o
13 rm -f src/tnef/*.hi
14 rm -f src/tnef/*.o
15 rm -f htnef.prof