mirror of
https://gitlab.com/scemama/eplf
synced 2024-12-22 20:35:30 +01:00
23 lines
401 B
Makefile
23 lines
401 B
Makefile
# MPI-ifort
|
|
IRPF90 = irpf90 -DMPI #-a -d
|
|
FC = mpif90 -static-intel -static-libgcc -xT
|
|
FCFLAGS= -O3 -g
|
|
|
|
# Gfortran
|
|
#FC = gfortran -ffree-line-length-none -static-libgcc -static
|
|
#FCFLAGS= -O3 -ffast-math -L ~/QCIO/lib
|
|
|
|
# Mono
|
|
IRPF90 = irpf90
|
|
FC = ifort -static-intel -static-libgcc
|
|
FCFLAGS= -O3 -axP
|
|
|
|
SRC=
|
|
OBJ=
|
|
LIB=-lqcio
|
|
|
|
include irpf90.make
|
|
|
|
irpf90.make: $(wildcard *.irp.f)
|
|
$(IRPF90)
|