Skip to content
Snippets Groups Projects
Commit 5cc94b05 authored by Antoine Cyril David Hoffmann's avatar Antoine Cyril David Hoffmann :seedling:
Browse files

rename executable

parent 26d635a3
No related branches found
No related tags found
No related merge requests found
...@@ -4,35 +4,35 @@ include local/make.inc ...@@ -4,35 +4,35 @@ include local/make.inc
# Standard version with optimized compilation (ifort compiler) # Standard version with optimized compilation (ifort compiler)
all: F90 = mpif90 all: F90 = mpif90
all: F90FLAGS = -O3 -xHOST all: F90FLAGS = -O3 -xHOST
all: EXEC = $(BINDIR)/gyacomo all: EXEC = $(BINDIR)/gyacomo22
all: dirs src/srcinfo.h all: dirs src/srcinfo.h
all: compile all: compile
# Fast compilation # Fast compilation
fast: F90 = mpif90 fast: F90 = mpif90
fast: F90FLAGS = -fast fast: F90FLAGS = -fast
fast: EXEC = $(BINDIR)/gyacomo_fast fast: EXEC = $(BINDIR)/gyacomo22_fast
fast: dirs src/srcinfo.h fast: dirs src/srcinfo.h
fast: compile fast: compile
# Debug version with all flags # Debug version with all flags
debug: F90 = mpif90 debug: F90 = mpif90
debug: F90FLAGS = -g -traceback -ftrapuv -warn all -debug all debug: F90FLAGS = -g -traceback -ftrapuv -warn all -debug all
debug: EXEC = $(BINDIR)/gyacomo_debug debug: EXEC = $(BINDIR)/gyacomo22_debug
debug: dirs src/srcinfo.h debug: dirs src/srcinfo.h
debug: compile debug: compile
# For compiling on marconi # For compiling on marconi
marconi: F90 = mpiifort marconi: F90 = mpiifort
marconi: F90FLAGS = -O3 -xHOST marconi: F90FLAGS = -O3 -xHOST
marconi: EXEC = $(BINDIR)/gyacomo marconi: EXEC = $(BINDIR)/gyacomo22
marconi: dirs src/srcinfo.h marconi: dirs src/srcinfo.h
marconi: compile marconi: compile
# For compiling on daint # For compiling on daint
daint: F90 = ftn daint: F90 = ftn
daint: F90FLAGS = -O3 daint: F90FLAGS = -O3
daint: EXEC = $(BINDIR)/gyacomo daint: EXEC = $(BINDIR)/gyacomo22
daint: dirs src/srcinfo.h daint: dirs src/srcinfo.h
daint: compile daint: compile
...@@ -40,7 +40,7 @@ daint: compile ...@@ -40,7 +40,7 @@ daint: compile
gopt: F90 = mpif90 gopt: F90 = mpif90
gopt: F90FLAGS = -O3 -std=legacy -ffree-line-length-0 gopt: F90FLAGS = -O3 -std=legacy -ffree-line-length-0
gopt: EXTMOD = -J $(MODDIR) gopt: EXTMOD = -J $(MODDIR)
gopt: EXEC = $(BINDIR)/gyacomo gopt: EXEC = $(BINDIR)/gyacomo22
gopt: dirs src/srcinfo.h gopt: dirs src/srcinfo.h
gopt: compile gopt: compile
...@@ -48,7 +48,7 @@ gopt: compile ...@@ -48,7 +48,7 @@ gopt: compile
gdebug: F90 = mpif90 gdebug: F90 = mpif90
gdebug: F90FLAGS = -C -g -std=legacy -ffree-line-length-0 gdebug: F90FLAGS = -C -g -std=legacy -ffree-line-length-0
gdebug: EXTMOD = -J $(MODDIR) gdebug: EXTMOD = -J $(MODDIR)
gdebug: EXEC = $(BINDIR)/gyacomo_debug gdebug: EXEC = $(BINDIR)/gyacomo22_debug
gdebug: dirs src/srcinfo.h gdebug: dirs src/srcinfo.h
gdebug: compile gdebug: compile
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment