Index: INSTALL
===================================================================
--- INSTALL	(revision d6cd371f3cb09d2e81a0ba82aeced1d947cc8c5d)
+++ INSTALL	(revision 2ac218dc2d0119bdb6becafa6a7789a65786f7dc)
@@ -1,24 +1,25 @@
-cfa-cc: The Cforall->C Compiler System
+cfa-cc: Cforall to C Trans-compiler
 ======================================
 
 Cforall is built using GNU Make and the GNU Autoconf system.  It also requires
-g++ version >= 4.6, bison and flex.  On systems where GNU Make is the default
+g++ version >= 6, bison and flex.  On systems where GNU Make is the default
 make, the system is built by entering the commands:
 
-For devs using the root git:
+For developers using the root git:
 
-  ./autogen.sh
-	./configure
-	make
-	make install
+  $ ./autogen.sh
+  $ ./configure
+  $ make -j 8 install
 
 For users using the distributed tarball:
 
-	./configure
-	make
-	make install
+  $ ./configure
+  $ make -j 8 install
+
+where 8 is the number of CPUs on your computer.
+
 
 Options for 'configure'
------------------------
+======================================
 The script 'configure' accepts many command line arguments.  Run './configure
 --help' to see a list of all of them.  This document attempts to summarize the
@@ -31,2 +32,11 @@
   it is important not to put quotes around the directory path; Cforall may
   appear to build, but the installed version may not work properly.
+
+
+Build Test
+======================================
+
+  $ cd ./test
+  $ make -j 8 all-tests
+
+The tests take about 2-5 minutes and can be stopped at any time.
