summaryrefslogtreecommitdiff
path: root/makefile
blob: d5a3939d2fc28766ed2bfd68864ab19776e90c09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

OUTPUTDIR = ./bin

EXECUTABLES = ${OUTPUTDIR}/test


all: test

clean:
	find . -name '*.hi' -delete
	find . -name '*.o' -delete

distclean:
	rm ${EXECUTABLES}


test:
	ghc --make ./test.hs -o ${OUTPUTDIR}/test