-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (22 loc) · 811 Bytes
/
Makefile
File metadata and controls
33 lines (22 loc) · 811 Bytes
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
OCAMLBUILD = ocamlbuild -tag safe_string -pkg unix -I shims
default: Makefile.coq
$(MAKE) -f Makefile.coq
install: Makefile.coq
$(MAKE) -f Makefile.coq install
clean: Makefile.coq
$(MAKE) -f Makefile.coq cleanall
rm -f Makefile.coq Makefile.coq.conf
$(OCAMLBUILD) -clean
tpc: TPCMain.native
calculator: CalculatorMain.native
Makefile.coq: _CoqProject
coq_makefile -f _CoqProject -o Makefile.coq
TPCMain.d.byte: default
$(OCAMLBUILD) -I extraction/TPC shims/TPCMain.d.byte
TPCMain.native: default
$(OCAMLBUILD) -I extraction/TPC shims/TPCMain.native
CalculatorMain.d.byte: default
$(OCAMLBUILD) -I extraction/calculator shims/CalculatorMain.d.byte
CalculatorMain.native: default
$(OCAMLBUILD) -I extraction/calculator shims/CalculatorMain.native
.PHONY: default clean install tpc calculator