# A Makefile example. # Note that the names of compilers and Makefile variables # (macro names) are not standardized. OBJS = myprog.o # Name of your compiler FC = ifort # Compiler options FFLAGS = -O3 myprog: $(OBJS) $(FC) -o $@ $(FFLAGS) $(OBJS) clean: rm -f myprog *.o