CXX = g++ CXXFLAGS = -O2 all: jacobi2d jacobi2d : jacobi2d.C $(CXX) $(CXXFLAGS) -o $@ $< clean: rm -f jacobi2d