-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.ci
82 lines (69 loc) · 1.87 KB
/
Makefile.ci
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
73
74
75
76
77
78
79
80
81
82
##########################################################################
## # The Coq Proof Assistant / The Coq Development Team ##
## v # INRIA, CNRS and contributors - Copyright 1999-2019 ##
## <O___,, # (see CREDITS file for the list of authors) ##
## \VV/ ###############################################################
## // # This file is distributed under the terms of the ##
## # GNU Lesser General Public License Version 2.1 ##
## # (see LICENSE file for the text of the license) ##
##########################################################################
CI_TARGETS= \
ci-aac_tactics \
ci-argosy \
ci-bedrock2 \
ci-bignums \
ci-color \
ci-compcert \
ci-coq_dpdgraph \
ci-coquelicot \
ci-corn \
ci-cross-crypto \
ci-coqprime \
ci-elpi \
ci-ext-lib \
ci-equations \
ci-fcsl-pcm \
ci-fiat-crypto \
ci-fiat_parsers \
ci-flocq \
ci-geocoq \
ci-coqhammer \
ci-hott \
ci-iris-lambda-rust \
ci-math-classes \
ci-math-comp \
ci-mtac2 \
ci-paramcoq \
ci-perennial \
ci-quickchick \
ci-reduction_effects \
ci-relation_algebra \
ci-rewriter \
ci-sf \
ci-simple-io \
ci-stdlib2 \
ci-tlc \
ci-unimath \
ci-unicoq \
ci-verdi-raft \
ci-vst
.PHONY: ci-all $(CI_TARGETS)
ci-help:
echo '*** Coq CI system, please specify a target to build.'
false
ci-all: $(CI_TARGETS)
ci-color: ci-bignums
ci-coqprime: ci-bignums
ci-math-classes: ci-bignums
ci-corn: ci-math-classes
ci-mtac2: ci-unicoq
ci-fiat-crypto: ci-coqprime ci-rewriter
ci-simple-io: ci-ext-lib
ci-quickchick: ci-ext-lib ci-simple-io
# Generic rule, we use make to ease CI integration
$(CI_TARGETS): ci-%:
+./dev/ci/ci-wrapper.sh $*
# For emacs:
# Local Variables:
# mode: makefile
# End: