blob: 3c26bf964b20350634603114d1c8f79e0a2724b2 (
plain)
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
|
##########################################################################
## # The Coq Proof Assistant / The Coq Development Team ##
## v # INRIA, CNRS and contributors - Copyright 1999-2018 ##
## <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-bignums \
ci-color \
ci-compcert \
ci-coq-dpdgraph \
ci-coquelicot \
ci-corn \
ci-cpdt \
ci-elpi \
ci-equations \
ci-fiat-crypto \
ci-fiat-parsers \
ci-flocq \
ci-formal-topology \
ci-geocoq \
ci-hott \
ci-iris-lambda-rust \
ci-ltac2 \
ci-math-classes \
ci-math-comp \
ci-metacoq \
ci-sf \
ci-tlc \
ci-unimath \
ci-vst
.PHONY: ci-all $(CI_TARGETS)
ci-color: ci-bignums
ci-math-classes: ci-bignums
ci-corn: ci-math-classes
ci-formal-topology: ci-corn
# Generic rule, we use make to ease travis integration with mixed rules
$(CI_TARGETS): ci-%:
+./dev/ci/ci-wrapper.sh $*
ci-all: $(CI_TARGETS)
# For emacs:
# Local Variables:
# mode: makefile
# End:
|