# Makefile for hello.cpp by Brett Tjaden CFLAGS = -O2 hello: hello.cpp g++ $(CFLAGS) -o hello hello.cpp