forked from lukaszcz/coqhammer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
72 lines (48 loc) · 2.14 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
default: all
all: Makefile.coq Makefile.coq.local
$(MAKE) -f Makefile.coq
tactics: Makefile.coq.tactics
$(MAKE) -f Makefile.coq.tactics
plugin: Makefile.coq.plugin Makefile.coq.plugin.local
$(MAKE) -f Makefile.coq.plugin
mathcomp: Makefile.coq.mathcomp
$(MAKE) -f Makefile.coq.mathcomp
install: Makefile.coq Makefile.coq.local
$(MAKE) -f Makefile.coq install
install-tactics: Makefile.coq.tactics
$(MAKE) -f Makefile.coq.tactics install
install-plugin: Makefile.coq.plugin Makefile.coq.plugin.local
$(MAKE) -f Makefile.coq.plugin install
install-mathcomp: Makefile.coq.mathcomp
$(MAKE) -f Makefile.coq.mathcomp install
uninstall: Makefile.coq Makefile.coq.local
$(MAKE) -f Makefile.coq uninstall
uninstall-tactics: Makefile.coq.tactics
$(MAKE) -f Makefile.coq.tactics uninstall
uninstall-plugin: Makefile.coq.plugin Makefile.coq.plugin.local
$(MAKE) -f Makefile.coq.plugin uninstall
uninstall-mathcomp: Makefile.coq.mathcomp
$(MAKE) -f Makefile.coq.mathcomp uninstall
Makefile.coq: _CoqProject
coq_makefile -f _CoqProject -o Makefile.coq
Makefile.coq.plugin: _CoqProject.plugin
coq_makefile -f _CoqProject.plugin -o Makefile.coq.plugin
Makefile.coq.tactics: _CoqProject.tactics
coq_makefile -f _CoqProject.tactics -o Makefile.coq.tactics
Makefile.coq.mathcomp: _CoqProject.mathcomp
coq_makefile -f _CoqProject.mathcomp -o Makefile.coq.mathcomp
tests: tests-plugin tests-tactics
tests-plugin:
$(MAKE) -B -C tests/plugin
tests-tactics:
$(MAKE) -B -C tests/tactics
quicktest: test-plugin test-tactics
test-plugin:
$(MAKE) -B -C tests/plugin plugin_test.vo
test-tactics:
$(MAKE) -B -C tests/tactics tactics_test.vo
clean: Makefile.coq Makefile.coq.local Makefile.coq.mathcomp
$(MAKE) -f Makefile.coq cleanall
-$(MAKE) -f Makefile.coq.mathcomp cleanall
rm -f Makefile.coq Makefile.coq.conf Makefile.coq.tactics Makefile.coq.tactics.conf Makefile.coq.plugin Makefile.coq.plugin.conf Makefile.coq.mathcomp Makefile.coq.mathcomp.conf
.PHONY: default all tactics plugin mathcomp install install-tactics install-plugin install-mathcomp uninstall uninstall-tactics uninstall-plugin tests tests-plugin tests-tactics quicktest test-plugin test-tactics clean