all:
	g++ -c -O0 -Wall hw3.cpp
	g++ hw3.o flash.o -o hw3

debug:
	g++ -c -O0 -g -Wall hw3.cpp
	g++ hw3.o flash.o -o hw3
