CXX=g++-4.7
# CPPFLAGS=-Wall -g
# CPPFLAGS=-Wall -g -std=c++0x
CPPFLAGS=-Wall -g -std=c++0x -pthread

all: auto constexpr ilists init init_new lambda loops thread thread2 tuple

test: all
	./auto
	./constexpr
	./ilists
	./init
	./init_new
	./lambda
	./loops
	./thread
	./thread2
	./tuple


clean:
	@rm -vf auto constexpr ilists init init_new lambda loops thread thread2 tuple
