forked from homalg-project/CAP_project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
168 lines (112 loc) · 5.11 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
all: doc test
ci-test: ci-test_all_packages
# BEGIN PACKAGE JANITOR
################################
doc: doc_CAP doc_ActionsForCAP doc_AttributeCategoryForCAP doc_CartesianCategories doc_CompilerForCAP doc_ComplexesAndFilteredObjectsForCAP doc_FreydCategoriesForCAP doc_GeneralizedMorphismsForCAP doc_GradedModulePresentationsForCAP doc_GroupRepresentationsForCAP doc_HomologicalAlgebraForCAP doc_InternalExteriorAlgebraForCAP doc_LinearAlgebraForCAP doc_ModulePresentationsForCAP doc_ModulesOverLocalRingsForCAP doc_MonoidalCategories doc_ToricSheaves
doc_CAP:
$(MAKE) -C CAP doc
doc_ActionsForCAP:
$(MAKE) -C ActionsForCAP doc
doc_AttributeCategoryForCAP:
$(MAKE) -C AttributeCategoryForCAP doc
doc_CartesianCategories:
$(MAKE) -C CartesianCategories doc
doc_CompilerForCAP:
$(MAKE) -C CompilerForCAP doc
doc_ComplexesAndFilteredObjectsForCAP:
$(MAKE) -C ComplexesAndFilteredObjectsForCAP doc
doc_FreydCategoriesForCAP:
$(MAKE) -C FreydCategoriesForCAP doc
doc_GeneralizedMorphismsForCAP:
$(MAKE) -C GeneralizedMorphismsForCAP doc
doc_GradedModulePresentationsForCAP:
$(MAKE) -C GradedModulePresentationsForCAP doc
doc_GroupRepresentationsForCAP:
$(MAKE) -C GroupRepresentationsForCAP doc
doc_HomologicalAlgebraForCAP:
$(MAKE) -C HomologicalAlgebraForCAP doc
doc_InternalExteriorAlgebraForCAP:
$(MAKE) -C InternalExteriorAlgebraForCAP doc
doc_LinearAlgebraForCAP:
$(MAKE) -C LinearAlgebraForCAP doc
doc_ModulePresentationsForCAP:
$(MAKE) -C ModulePresentationsForCAP doc
doc_ModulesOverLocalRingsForCAP:
$(MAKE) -C ModulesOverLocalRingsForCAP doc
doc_MonoidalCategories:
$(MAKE) -C MonoidalCategories doc
doc_ToricSheaves:
$(MAKE) -C ToricSheaves doc
################################
test: doc test_CAP test_ActionsForCAP test_AttributeCategoryForCAP test_CartesianCategories test_CompilerForCAP test_ComplexesAndFilteredObjectsForCAP test_FreydCategoriesForCAP test_GeneralizedMorphismsForCAP test_GradedModulePresentationsForCAP test_GroupRepresentationsForCAP test_HomologicalAlgebraForCAP test_InternalExteriorAlgebraForCAP test_LinearAlgebraForCAP test_ModulePresentationsForCAP test_ModulesOverLocalRingsForCAP test_MonoidalCategories test_ToricSheaves
test_CAP:
$(MAKE) -C CAP test
test_ActionsForCAP:
$(MAKE) -C ActionsForCAP test
test_AttributeCategoryForCAP:
$(MAKE) -C AttributeCategoryForCAP test
test_CartesianCategories:
$(MAKE) -C CartesianCategories test
test_CompilerForCAP:
$(MAKE) -C CompilerForCAP test
test_ComplexesAndFilteredObjectsForCAP:
$(MAKE) -C ComplexesAndFilteredObjectsForCAP test
test_FreydCategoriesForCAP:
$(MAKE) -C FreydCategoriesForCAP test
test_GeneralizedMorphismsForCAP:
$(MAKE) -C GeneralizedMorphismsForCAP test
test_GradedModulePresentationsForCAP:
$(MAKE) -C GradedModulePresentationsForCAP test
test_GroupRepresentationsForCAP:
$(MAKE) -C GroupRepresentationsForCAP test
test_HomologicalAlgebraForCAP:
$(MAKE) -C HomologicalAlgebraForCAP test
test_InternalExteriorAlgebraForCAP:
$(MAKE) -C InternalExteriorAlgebraForCAP test
test_LinearAlgebraForCAP:
$(MAKE) -C LinearAlgebraForCAP test
test_ModulePresentationsForCAP:
$(MAKE) -C ModulePresentationsForCAP test
test_ModulesOverLocalRingsForCAP:
$(MAKE) -C ModulesOverLocalRingsForCAP test
test_MonoidalCategories:
$(MAKE) -C MonoidalCategories test
test_ToricSheaves:
$(MAKE) -C ToricSheaves test
################################
ci-test_all_packages: ci-test_CAP ci-test_ActionsForCAP ci-test_AttributeCategoryForCAP ci-test_CartesianCategories ci-test_CompilerForCAP ci-test_ComplexesAndFilteredObjectsForCAP ci-test_FreydCategoriesForCAP ci-test_GeneralizedMorphismsForCAP ci-test_GradedModulePresentationsForCAP ci-test_GroupRepresentationsForCAP ci-test_HomologicalAlgebraForCAP ci-test_InternalExteriorAlgebraForCAP ci-test_LinearAlgebraForCAP ci-test_ModulePresentationsForCAP ci-test_ModulesOverLocalRingsForCAP ci-test_MonoidalCategories ci-test_ToricSheaves
ci-test_CAP:
$(MAKE) -C CAP ci-test
ci-test_ActionsForCAP:
$(MAKE) -C ActionsForCAP ci-test
ci-test_AttributeCategoryForCAP:
$(MAKE) -C AttributeCategoryForCAP ci-test
ci-test_CartesianCategories:
$(MAKE) -C CartesianCategories ci-test
ci-test_CompilerForCAP:
$(MAKE) -C CompilerForCAP ci-test
ci-test_ComplexesAndFilteredObjectsForCAP:
$(MAKE) -C ComplexesAndFilteredObjectsForCAP ci-test
ci-test_FreydCategoriesForCAP:
$(MAKE) -C FreydCategoriesForCAP ci-test
ci-test_GeneralizedMorphismsForCAP:
$(MAKE) -C GeneralizedMorphismsForCAP ci-test
ci-test_GradedModulePresentationsForCAP:
$(MAKE) -C GradedModulePresentationsForCAP ci-test
ci-test_GroupRepresentationsForCAP:
$(MAKE) -C GroupRepresentationsForCAP ci-test
ci-test_HomologicalAlgebraForCAP:
$(MAKE) -C HomologicalAlgebraForCAP ci-test
ci-test_InternalExteriorAlgebraForCAP:
$(MAKE) -C InternalExteriorAlgebraForCAP ci-test
ci-test_LinearAlgebraForCAP:
$(MAKE) -C LinearAlgebraForCAP ci-test
ci-test_ModulePresentationsForCAP:
$(MAKE) -C ModulePresentationsForCAP ci-test
ci-test_ModulesOverLocalRingsForCAP:
$(MAKE) -C ModulesOverLocalRingsForCAP ci-test
ci-test_MonoidalCategories:
$(MAKE) -C MonoidalCategories ci-test
ci-test_ToricSheaves:
$(MAKE) -C ToricSheaves ci-test
# END PACKAGE JANITOR