CPPFLAGS=-Wall -g -std=c++0x

all: main

test: all
	./main

clean:
	@rm -rfv main.o main
