blob: 5ca3e2a3ec2e120013801996b7f7bd4167aa70b8 (
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
|
#---------------------------------------------------------------------------
#
# Makefile for executing the Skin++ non-regression test
# Author : A. Hebert (2018-5-10)
#
#---------------------------------------------------------------------------
#
OS = $(shell uname -s | cut -d"_" -f1)
ifneq (,$(filter $(OS),SunOS AIX))
MAKE = gmake
endif
ifeq ($(openmp),1)
nomp = 16
else
nomp = 0
endif
ifeq ($(intel),1)
fcompilerSuite = intel
else
ifeq ($(nvidia),1)
fcompilerSuite = nvidia
else
ifeq ($(llvm),1)
fcompilerSuite = llvm
else
fcompilerSuite = custom
endif
endif
endif
all :
$(MAKE) -C src
clean :
$(MAKE) clean -C src
tests :
./rskin -c $(fcompilerSuite) -p $(nomp) -q
|