forked from homalg-project/CAP_project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
41 lines (28 loc) · 823 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
41
all: homalg_compatibility doc test
.PHONY: test
homalg_compatibility:
gap load_cap_sheaves.g
gap load_sheaves_cap.g
test: CAP_test Modules_test Linear_test Generalized_test
CAP_test:
cd CAP && make test
Modules_test:
cd ModulePresentationsForCAP && make test
Linear_test:
cd LinearAlgebraForCAP && make test
Generalized_test:
cd GeneralizedMorphismsForCAP && make test
doc: CAP_doc Modules_doc Linear_doc Generalized_doc
CAP_doc:
cd CAP && make doc
Modules_doc:
cd ModulePresentationsForCAP && make doc
Linear_doc:
cd LinearAlgebraForCAP && make doc
Generalized_doc:
cd GeneralizedMorphismsForCAP && make doc
ci-test: homalg_compatibility doc
cd CAP && make ci-test
cd ModulePresentationsForCAP && make ci-test
cd LinearAlgebraForCAP && make ci-test
cd GeneralizedMorphismsForCAP && make ci-test