23 lines
375 B
Makefile
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
|