git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6603
This allows you to compile and run with "make" instead of "make install",
saving you time.
+Or, you can use the 'vg-in-place' script which does that for you.
+
I recommend compiling with "make --quiet" to further reduce the amount of
output spewed out during compilation, letting you actually see any errors,
warnings, etc.
--- /dev/null
+# This ensures it works when invoked from any directory.
+d=`dirname $0`
+
+VALGRIND_LIB=$d/.in_place \
+ VALGRIND_LIB_INNER=$d/.in_place \
+ $d/coregrind/valgrind "$@"
+