Files
cpp11/Makefile
T

23 lines
375 B
Makefile
Raw Normal View History

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