all: prog prog: prog.f sub.o aux.o ifort -O1 -o prog prog.f sub.o aux.o aux.o: aux.c icc -c aux.c sub.o: sub.f ifort -c sub.f clean: rm -f *.o prog