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