10
0
mirror of https://gitlab.com/scemama/eplf synced 2024-09-20 16:53:50 +02:00
eplf/src/Makefile
2009-11-06 00:27:24 +01:00

27 lines
429 B
Makefile

# MPI-ifort
IRPF90 = irpf90 -DMPI #-a -d
FC = mpif90 -xT -ip -finline
FCFLAGS= -O3
# Gfortran
#IRPF90 = irpf90 #-DMPI #-a -d
#FC = gfortran -static-libgcc
#FCFLAGS= -O3 -ffast-math -L ~/QCIO/lib
# Mono
#IRPF90 = irpf90
#FC = ifort -static-intel -static-libgcc
#FCFLAGS= -O3 -axP
SRC=
OBJ=
LIB=../EZFIO/lib/libezfio.a
eplf: main
mv main eplf
include irpf90.make
irpf90.make: $(wildcard *.irp.f)
$(IRPF90)