-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathMakefile.am
128 lines (118 loc) · 3.57 KB
/
Makefile.am
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
ACLOCAL_AMFLAGS = -I m4 --install
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = neko.pc
SUBDIRS = src
if ENABLE_CONTRIB
SUBDIRS += contrib
endif
if ENABLE_PFUNIT
SUBDIRS += tests/unit
endif
if ENABLE_DOXYGEN
SUBDIRS += doc
endif
CLEANFILES = *.mod\
*.smod
bin_SCRIPTS = makeneko
EXTRA_DIST = \
makeneko.in\
regen.sh\
flinter_rc.yml\
tests/bench/ax/setup.f90\
tests/bench/ax/Makefile\
tests/bench/ax/axkernel.f90\
tests/bench/ax/driver.f90\
tests/bench/gs/Makefile\
tests/bench/gs/driver.f90\
tests/bench/tgv32/tgv.case\
tests/bench/tgv32/README.md\
tests/bench/tgv32/extract.sh\
tests/bench/tgv32/tgv.f90\
examples/turb_channel/turb_channel.case\
examples/turb_channel/README.md\
examples/turb_channel/turb_channel.f90\
examples/turb_channel/box.nmsh\
examples/turb_pipe/turb_pipe.case\
examples/turb_pipe/turb_pipe_source.case\
examples/turb_pipe/turb_pipe.f90\
examples/turb_pipe/turb_pipe.nmsh\
examples/turb_pipe/turb_pipe.geo\
examples/turb_pipe/README.md\
examples/hemi/hemi.nmsh\
examples/hemi/README.md\
examples/hemi/hemi.case\
examples/lid/lid.f90\
examples/lid/lid2d.nmsh\
examples/lid/lid.nmsh\
examples/lid/README.md\
examples/lid/lid2d.box\
examples/lid/lid2d.case\
examples/lid/lid.case\
examples/lid/lid.box\
examples/poisson/ax_poisson.f90\
examples/poisson/setup.f90\
examples/poisson/Makefile\
examples/poisson/README.md\
examples/poisson/data/4096.nmsh\
examples/poisson/data/16384.nmsh\
examples/poisson/data/256.nmsh\
examples/poisson/data/2048.nmsh\
examples/poisson/data/128.nmsh\
examples/poisson/data/32768.nmsh\
examples/poisson/data/8192.nmsh\
examples/poisson/data/512.nmsh\
examples/poisson/data/1024.nmsh\
examples/poisson/driver.f90\
examples/2d_cylinder/ext_cyl.nmsh\
examples/2d_cylinder/2d_cylinder.case\
examples/2d_cylinder/README.md\
examples/cyl_boundary_layer/cyl_bl_rot.case\
examples/cyl_boundary_layer/cyl_bl.f90\
examples/cyl_boundary_layer/README.md\
examples/cyl_boundary_layer/cyl_bl_user.case\
examples/cyl_boundary_layer/cyl_bl_basic.case\
examples/cyl_boundary_layer/cyl.nmsh\
examples/rayleigh_benard/rayleigh.f90\
examples/rayleigh_benard/README.md\
examples/rayleigh_benard/box.nmsh\
examples/rayleigh_benard/rayleigh.case\
examples/tgv/262144.nmsh\
examples/tgv/tgv.case\
examples/tgv/README.md\
examples/tgv/32768.nmsh\
examples/tgv/tgv.f90\
examples/tgv/512.nmsh\
examples/rayleigh_benard_cylinder/probes.csv\
examples/rayleigh_benard_cylinder/rayleigh.f90\
examples/rayleigh_benard_cylinder/README.md\
examples/rayleigh_benard_cylinder/rayleigh.nmsh\
examples/rayleigh_benard_cylinder/rayleigh.geo\
examples/rayleigh_benard_cylinder/rayleigh.case\
examples/rayleigh_benard_cylinder/postprocess_probes.py\
tests/reframe/checks.py\
tests/reframe/settings.py\
tests/reframe/README.md\
tests/reframe/src/get-tgv-dns.sh\
tests/reframe/src/minihemi.case.template\
tests/reframe/src/rayleigh.case.template\
tests/reframe/src/rayleigh.f90\
tests/reframe/src/rocm_select_gpu_device.sh\
tests/reframe/src/tgv.case.template\
tests/reframe/src/tgv.f90\
tests/regression/README.md\
tests/regression/cylinder/cylinder_part1.case\
tests/regression/cylinder/cylinder_part2.case\
tests/regression/cylinder/ref1_dp.log\
tests/regression/cylinder/ref1_sp.log\
tests/regression/cylinder/ref2_dp.log\
tests/regression/cylinder/ref2_sp.log\
tests/regression/cylinder/small_test_cyl.nmsh\
tests/regression/cylinder/test_easy.sh\
tests/regression/cylinder/test.sh\
patches/nvhpc_bge.patch\
patches/json-fortran71.patch
if ENABLE_FLINT
lint:
$(FLINT) score -d 0 src/ -r flinter_rc.yml
check-local: lint
endif