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

tags: TAGS

TAGS: FORCE
	hasktags -b -c .

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

.PHONY: FORCE