#Copyright Jordan Earls <http://Earlz.biz.tm>
#All rights reserved.
#See "copyright.txt" for information on the copyright of this project and source file
#This file is part of the "x86Lib" project.



_CPPFLAGS=-Wall -g -fexceptions
#_CPPFLAGS=-O3
#_CPPFLAGS=-pg -fexceptions
#_CPPFLAGS=-O3 -march=athlon64

#order is, Development, Release, and Profiling


default:
	g++ $(_CPPFLAGS) -c main.cpp -o main.o
	g++ $(_CPPFLAGS) -o punch_calc main.o



