blob: d4f971be4f3d2165fb84778c41ab39ae42af6722 (
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
35
36
37
38
39
40
41
42
|
OUTPUTDIR = bin
all: semantic syntactic proofgraph writeproof delete concat listthm meaningsubst unittest compare
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
meaningsubst:
ghc --make ./MeaningSubst.hs -o ${OUTPUTDIR}/MeaningSubst
unittest:
ghc --make ./Test.hs -o ${OUTPUTDIR}/UnitTest
compare:
ghc --make ./Compare.hs -o ${OUTPUTDIR}/Compare
|