10 lines
184 B
Makefile
10 lines
184 B
Makefile
CXX=g++
|
|
CPPFLAGS=-Wall -g -std=c++0x
|
|
# CPPFLAGS=-Wall -g
|
|
|
|
all:
|
|
@echo "build things individually (make loops, etc.)"
|
|
|
|
clean:
|
|
@rm -vf auto constexpr ilists2 ilists init init_new loops
|