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