CXXFLAGS=-Wall -g -std=c++0x
all: monopoly
clean:
	rm -vf monopoly

test: all
	./monopoly

debug: all
	gdb monopoly
