forked from AU-COBRA/ConCert
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
36 lines (27 loc) · 698 Bytes
/
Makefile
File metadata and controls
36 lines (27 loc) · 698 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
34
35
36
all: theory
.PHONY: all
CoqMakefile: _CoqProject
coq_makefile -f _CoqProject -o CoqMakefile
theory: CoqMakefile
+@make -f CoqMakefile
.PHONY: theory
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: ;