FORT=ifort OPTS=-g -O3 -tpp7 -xW -check bounds # this might be useful if you are examining the re180 fields # OPTS=-g -O3 -tpp7 -xW -check bounds -convert big_endian FOPTS=-w95 COPTS=-O3 #FFTW_DIR=/ices/bhattach/fftw-2.1.5 SRC=postproc.f90 compute.f90 data.f90 io.f90 OBJECTS=postproc.o compute.o data.o io.o postproc: $(OBJECTS) Makefile $(FORT) -o $@ $(OBJECTS) $(OPTS) postproc.o: postproc.f90 compute.o data.o Makefile $(FORT) $< -c $(OPTS) $(FOPTS) compute.o: compute.f90 data.o io.o Makefile $(FORT) $< -c $(OPTS) $(FOPTS) data.o: data.f90 Makefile $(FORT) $< -c $(OPTS) $(FOPTS) io.o: io.f90 data.o Makefile $(FORT) $< -c $(OPTS) $(FOPTS) clean: rm -f *.o *.il *.d work*