cpp11/Makefile

23 lines
375 B
Makefile
Raw Normal View History

2012-05-05 13:12:32 -07:00
CXX=g++-4.7
# CPPFLAGS=-Wall -g
2012-05-05 08:34:07 -07:00
# CPPFLAGS=-Wall -g -std=c++0x
2012-05-05 12:45:49 -07:00
CPPFLAGS=-Wall -g -std=c++0x -pthread
2012-05-05 13:12:32 -07:00
all: auto constexpr ilists init init_new lambda loops thread thread2 tuple
2012-05-05 13:14:40 -07:00
run: all
2012-05-05 13:12:32 -07:00
./auto
./constexpr
./ilists
./init
./init_new
./lambda
./loops
./thread
./thread2
./tuple
clean:
2012-05-05 13:12:32 -07:00
@rm -vf auto constexpr ilists init init_new lambda loops thread thread2 tuple