# Quick and dirty makefile

BINNAME=asteroid

all:
	g++ -g asteroid.cpp player.cpp $(OSFLAG) -o $(BINNAME)

clean:
	rm -f $(BINNAME)
	rm -f *.gch

