-
Notifications
You must be signed in to change notification settings - Fork 19
/
Makefile
40 lines (30 loc) · 861 Bytes
/
Makefile
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
all: examples process-extraction-examples
.PHONY: all
CoqMakefile: _CoqProject
coq_makefile -f _CoqProject -o CoqMakefile
examples: CoqMakefile
+@make -f CoqMakefile
.PHONY: examples
clean: CoqMakefile
+@make -f CoqMakefile clean
rm -f CoqMakefile
.PHONY: clean
install: CoqMakefile
+@make -f CoqMakefile install
.PHONY: install
uninstall: CoqMakefile
+@make -f CoqMakefile uninstall
.PHONY: uninstall
vos: CoqMakefile
+@make -f CoqMakefile vos
quick: CoqMakefile
+@make -f CoqMakefile COQEXTRAFLAGS="-unset \"Universe Checking\"" vos
# Forward most things to Coq makefile. Use 'force' to make this phony.
%: CoqMakefile force
+@make -f CoqMakefile $@
force: ;
# Do not forward these files
Makefile _CoqProject: ;
process-extraction-examples: examples
cd ../extraction && ./process-extraction-examples.sh
.PHONY: process-extraction-examples