# This makefile was generated using the build tool found at # http://www.fluxionsdividebyzero.com/p1/misc/proj/documentation/makefilebuildtool.html CC=g++ -Wall INC=-I./ OBJ=main.o LIB= main: $(OBJ) $(CC) $(INC) -o main $(OBJ) $(LIB) main.o: ./main.cpp $(CC) $(INC) -c ./main.cpp clean: rm *.o *.order *.out gmon.* main # Re-compile specific parts of the program. e.g. # $ make del targ=windowscale targ=__nopattern__ del: rm *${targ}*.o; make