From dd5c982be1b55b2ffc56eb00ca27f12dbb7d544e Mon Sep 17 00:00:00 2001 From: "Stephen M. McQuay" Date: Sat, 5 May 2012 14:14:40 -0600 Subject: [PATCH] updated make file to be more automatic --- Makefile | 2 +- README.rst | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 48507bb..983d719 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ CPPFLAGS=-Wall -g -std=c++0x -pthread all: auto constexpr ilists init init_new lambda loops thread thread2 tuple -test: all +run: all ./auto ./constexpr ./ilists diff --git a/README.rst b/README.rst index d9360dc..d3b2d65 100644 --- a/README.rst +++ b/README.rst @@ -26,9 +26,9 @@ or to build it all:: make -Also, you can run it all with the test target: +Also, you can run it all with the *run* target:: - make test + make run if it returns 0, then everything went fine.