-
Notifications
You must be signed in to change notification settings - Fork 53
/
fobos
229 lines (203 loc) · 5.77 KB
/
fobos
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
[modes]
modes = shared-gnu static-gnu tests-gnu
shared-gnu-debug static-gnu-debug tests-gnu-debug
shared-intel static-intel tests-intel
shared-intel-debug static-intel-debug tests-intel-debug
[common-variables]
$CSHARED_GNU = -cpp -c -fPIC -frealloc-lhs
$CSHARED_INT = -cpp -c -fpic -assume realloc_lhs
$LSHARED = -shared
$CSTATIC_GNU = -cpp -c -frealloc-lhs
$CSTATIC_INT = -cpp -c -assume realloc_lhs
$DEBUG_GNU = -O0 -g3 -Warray-bounds -Wcharacter-truncation -Wline-truncation -Wimplicit-interface -Wimplicit-procedure -Wunderflow -Wuninitialized -fcheck=all -ffree-line-length-132 -fimplicit-none -fbacktrace -fdump-core -finit-real=nan
$DEBUG_INT = -O0 -check arg_temp_created -check format -check assume -check format -check output_conversion -check pointers -check stack -check uninit -debug all -warn all -extend-source 132 -traceback
$OPTIMIZE = -O2
$EXDIRS = src/pre-lib/
BeFoR64/src/tests/
FACE/src/tests/
FoXy/src/tests/
PENF/src/tests/
StringiFor/src/tests/
# main modes
[shared-gnu]
template = template-shared-gnu
target = src/lib/vtk_fortran.f90
build_dir = ./shared/
output = libvtkfortran.so
mklib = shared
[static-gnu]
template = template-static-gnu
target = src/lib/vtk_fortran.f90
build_dir = ./static/
output = libvtkfortran.a
mklib = static
[tests-gnu]
template = template-static-gnu
build_dir = exe
[shared-gnu-debug]
template = template-shared-gnu-debug
target = src/lib/vtk_fortran.f90
build_dir = ./shared/
output = libvtkfortran.so
mklib = shared
[static-gnu-debug]
template = template-static-gnu-debug
target = src/lib/vtk_fortran.f90
build_dir = ./static/
output = libvtkfortran.a
mklib = static
[tests-gnu-debug]
template = template-static-gnu-debug
build_dir = exe
[shared-intel]
template = template-shared-intel
target = src/lib/vtk_fortran.f90
build_dir = ./shared/
output = libvtkfortran.so
mklib = shared
[static-intel]
template = template-static-intel
target = src/lib/vtk_fortran.f90
build_dir = ./static/
output = libvtkfortran.a
mklib = static
[tests-intel]
template = template-static-intel
build_dir = exe
[shared-intel-debug]
template = template-shared-intel-debug
target = src/lib/vtk_fortran.f90
build_dir = ./shared/
output = libvtkfortran.so
mklib = shared
[static-intel-debug]
template = template-static-intel-debug
target = src/lib/vtk_fortran.f90
build_dir = ./static/
output = libvtkfortran.a
mklib = static
[tests-intel-debug]
template = template-static-intel-debug
build_dir = exe
#templates
[template-shared-gnu]
compiler = gnu
cflags = $CSHARED_GNU $OPTIMIZE
lflags = $LSHARED $OPTIMIZE
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
exclude_dirs = $EXDIRS
colors = True
quiet = False
log = True
jobs = 10
[template-static-gnu]
compiler = gnu
cflags = $CSTATIC_GNU $OPTIMIZE
lflags = $OPTIMIZE
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
exclude_dirs = $EXDIRS
colors = True
quiet = False
log = True
jobs = 10
[template-shared-gnu-debug]
compiler = gnu
cflags = $CSHARED_GNU $DEBUG_GNU
lflags = $LSHARED $DEBUG_GNU
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
exclude_dirs = $EXDIRS
colors = True
quiet = False
log = True
jobs = 10
[template-static-gnu-debug]
compiler = gnu
cflags = $CSTATIC_GNU $DEBUG_GNU
lflags = $DEBUG_GNU
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
exclude_dirs = $EXDIRS
colors = True
quiet = False
log = True
jobs = 10
[template-shared-intel]
compiler = intel
cflags = $CSHARED_INT $OPTIMIZE
lflags = $LSHARED $OPTIMIZE
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
exclude_dirs = $EXDIRS
colors = True
quiet = False
log = True
jobs = 10
[template-static-intel]
compiler = intel
cflags = $CSTATIC_INT $OPTIMIZE
lflags = $OPTIMIZE
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
exclude_dirs = $EXDIRS
colors = True
quiet = False
log = True
jobs = 10
[template-shared-intel-debug]
compiler = intel
cflags = $CSHARED_INT $DEBUG_INT
lflags = $LSHARED $DEBUG_INT
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
exclude_dirs = $EXDIRS
colors = True
quiet = False
log = True
jobs = 10
[template-static-intel-debug]
compiler = intel
cflags = $CSTATIC_INT $DEBUG_INT
lflags = $DEBUG_INT
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
exclude_dirs = $EXDIRS
colors = True
quiet = False
log = True
jobs = 10
[rule-makedoc]
help = Rule for building documentation from source files
rule_1 = rm -rf doc/html/*
rule_2 = ford doc/main_page.md
rule_3 = cp -r doc/html/publish/* doc/html/
[rule-deldoc]
help = Rule for deleting documentation
rule = rm -rf doc/html/*
[rule-maketar]
help = Rule for making tar archive of the project
rule = tar --xform="s%^%VTKFortran/%" -czf VTKFortran.tar.gz *
[rule-makecoverage]
help = Rule for performing coverage analysis
rule_1 = FoBiS.py clean -mode tests-gnu
rule_2 = FoBiS.py build -mode tests-gnu -coverage
rule_3 = ./run_tests.sh
rule_4 = gcov -o exe/obj/ src/lib/vtk_fortran*.f90
[rule-coverage-analysis]
help = Rule for performing coverage analysis and saving reports in markdown
rule_1 = FoBiS.py clean -mode tests-gnu
rule_2 = FoBiS.py build -mode tests-gnu -coverage
rule_3 = ./run_tests.sh
rule_4 = gcov -o exe/obj/ src/lib/vtk_fortran*.f90
rule_5 = FoBiS.py rule -gcov_analyzer wiki/ Coverage-Analysis
rule_6 = rm -f *.gcov XML_*vt?