1 | # 2 | # makefile.h for IMHOTEP at CERFACS 3 | # 4 | 5 | # 6 | # Some useful declaration 7 | # 8 | 9 | MV = \mv 10 | CP = \cp 11 | RM = \rm -rf 12 | LN = \ln -s 13 | AR = \ar rv 14 | 15 | # 16 | # M4 : 17 | # 18 | 19 | M4DIR = /usr/bin/m4 20 | 21 | # 22 | # Fortran and Compiler options 23 | # 24 | 25 | FF = f90 26 | FFS= f90 27 | CC = cxx 28 | 29 | # 30 | # MPI 31 | # 32 | 33 | PLIBS = -lmpi -lelan 34 | 35 | # 36 | # Compilation and linking options 37 | # 38 | 39 | LDFLAGS = -O -convert big_endian $(PLIBS) -openmp 40 | FFLAGS = -O -convert big_endian -align dcommons -openmp 41 | FFSLAGS = -convert big_endian -openmp 42 | CFLAGS = 43 | 44 | # 45 | # HDF 46 | # 47 | 48 | HDF5LIB = $(AVBP_HOME)/HOST/$(AVBP_HOSTTYPE)/INCLUDES/HDF5 49 | HDF5L = -lz -lm 50 |