incomp-flame-post/code/makefile
2019-04-01 15:12:36 +09:00

20 lines
618 B
Makefile

#flags = -r8 -i8 -msse3 -O3 -axT -m64 -fPIC -i_dynamic -openmp
#Neuman flags
#flags = -O3 -r8 -i8 -openmp -msse3 -axSSSE3 -m64 -fPIC -i_dynamic
#Cluster_2(16.161) flags
flags = -O3 -r8 -i8 -qopenmp -msse3 -axSSSE3 -m64 -fPIC
compiler = ifort
Post_Cbar_FSD_Incomp : test.o post.mod Compact.mod
${compiler} -o x-edge-cold-bc-uPrime-hybrid ${flags} test.o post.o Compact.o
test.o : test.f90 post.mod
${compiler} -c ${flags} test.f90
post.mod: post.f90 Compact.mod
${compiler} -c ${flags} post.f90
Compact.mod: Compact.f90
${compiler} -c ${flags} Compact.f90
clean:
rm *.o *.mod x-edge-cold-bc-uPrime-hybrid