summaryrefslogtreecommitdiff
path: root/Makefile
blob: a815cc7d528028ed5cd162378ec445e57b8a8c92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
biz.exe: Main.hs
	ghc -O -i. -o $@ $<

tags: TAGS

TAGS: FORCE
	hasktags -b -c .

clean: FORCE
	rm -f *.o *.exe *.hi

.PHONY: FORCE