From c5fef0be31bde28abcfce8b1115aaf3a656c42b5 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Mon, 10 Apr 2006 12:36:12 +0000 Subject: [PATCH] Use "@rule" syntax for make example. [SVN r33635] --- v2/example/make/Jamroot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/example/make/Jamroot b/v2/example/make/Jamroot index 03724f900..3fb84856f 100644 --- a/v2/example/make/Jamroot +++ b/v2/example/make/Jamroot @@ -7,7 +7,7 @@ exe main : main.cpp ; # Create 'main.cpp' from 'main.cpp.pro' using action # 'do-something' defined below. # -make main.cpp : main.cpp.pro : do-something ; +make main.cpp : main.cpp.pro : @do-something ; # In this example, we'll just copy a file. # Need to find out the name of a command to copy a file.