#compilation of AuxilaryRoutines

MAINSRC=AuxilaryRoutines.f90
RESULT=AuxilaryRoutines.so

build: RESULT

#Compile AuxilaryRoutines into a shared C-library
RESULT: ${MAINSRC}
	ifort ${MAINSRC} -o ${RESULT} -shared -O3 -fPIC -qmkl -static-intel -qopenmp -heap-arrays
clean:
	rm -f ${RESULT}
