cpp11/Makefile
2012-05-05 14:14:40 -06:00

23 lines
375 B
Makefile

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
run: 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