CFLAG = -O2 -ansi all: main.exe main.exe: ${CXX} main.cpp ${CFLAG} -o main.exe test.exe: ${CXX} test.cpp ${CFLAG} -o test.exe clean: rm -r *.exe