summaryrefslogtreecommitdiff
path: root/makefile
blob: 07ca71aa4e5c2c269321261bdfa32fc3248a0727 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

OUTPUTDIR = ./bin



all: semantic syntactic proofgraph writeproof delete concat listthm

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


semantic:
	ghc --make ./SemanticMain.hs -o ${OUTPUTDIR}/Semantic

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

proofgraph:
	ghc --make ./ProofGraphMain.hs -o ${OUTPUTDIR}/ProofGraph

writeproof:
	ghc --make ./WriteProofMain.hs -o ${OUTPUTDIR}/WriteProof

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

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

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