diff options
| author | stainer_t <thomas.stainer@oecd-nea.org> | 2025-09-08 13:48:49 +0200 |
|---|---|---|
| committer | stainer_t <thomas.stainer@oecd-nea.org> | 2025-09-08 13:48:49 +0200 |
| commit | 7dfcc480ba1e19bd3232349fc733caef94034292 (patch) | |
| tree | 03ee104eb8846d5cc1a981d267687a729185d3f3 /Skin++/Makefile | |
Initial commit from Polytechnique Montreal
Diffstat (limited to 'Skin++/Makefile')
| -rwxr-xr-x | Skin++/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Skin++/Makefile b/Skin++/Makefile new file mode 100755 index 0000000..5ca3e2a --- /dev/null +++ b/Skin++/Makefile @@ -0,0 +1,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 |
