OUTPUT=thingMaker

all:	main.cpp Thing.cpp BetaThing.cpp
	g++ -o $(OUTPUT) main.cpp Thing.cpp BetaThing.cpp

clean:
	rm $(OUTPUT)
