Index: INSTALL
===================================================================
--- INSTALL	(revision 23681dbf00f23188735c6c530185f9ab56a21c97)
+++ INSTALL	(revision a24a69ea122f99742cace0954e8d4a3369219c11)
@@ -2,22 +2,23 @@
 ======================================
 
-Cforall is built using GNU Make and the GNU Autoconf system.  It also requires
-g++ version >= 6, bison and flex.  On systems where GNU Make is the default
-make, the system is built by entering the commands:
+Cforall is built on Linux using GNU Make and the GNU Autoconf system, which
+includes Windows WSL.  It also requires g++ version >= 9, bison and flex.  On
+systems where GNU Make is the default make, the system is built by entering the
+commands:
 
-For developers using the root git:
+1. For developers using the root git:
 
-  $ ./autogen.sh
-  $ ./configure [ --prefix=/some/directory ]
-  $ make -j 8 install
-  $ cfa
+   $ ./autogen.sh
+   $ ./configure [ --prefix=/some/directory ]
+   $ make -j 8 install
+   $ cfa
 
-For users using the distributed tarball / github:
+2. For users using the distributed tarball/github:
 
-  $ ./configure
-  $ make -j 8 install
-  $ cfa
+   $ ./configure
+   $ make -j 8 install
+   $ cfa
 
-where 8 is the number of CPUs on your computer.
+where 8 or greater is the number of CPUs on your computer.
 
 The above instructions produce an in-tree, installed build, where intermediate
@@ -28,10 +29,10 @@
 common set of sources, and where no "official" CFA version is designated:
 
-  $ ./autogen.sh
-  $ mkdir ../build
-  $ cd ../build
-  $ ../cfa-cc/configure
-  $ make -j 8
-  $ ./driver/cfa
+   $ ./autogen.sh
+   $ mkdir ../build
+   $ cd ../build
+   $ ../cfa-cc/configure
+   $ make -j 8
+   $ ./driver/cfa
 
 
@@ -40,14 +41,14 @@
 The script 'configure' accepts many command-line arguments.  Run
 
-  $ ./configure --help
+   $ ./configure --help
 
 to list them.  The most common argument is:
 
-  --prefix=/some/directory controls the path prefix common to all installed
-    cfa-cc components.  Components are installed in directories bin and lib.
-    If unspecified, prefix defaults to /usr/local.  To use (a subdirectory of)
-    your home directory, ${HOME}/some/dir, but do not put quotes around the
-    directory path; Cforall may appear to build, but the installed version may
-    not work properly.
+   --prefix=/some/directory controls the path prefix common to all installed
+     cfa-cc components.  Components are installed in directories bin and lib.
+     If unspecified, prefix defaults to /usr/local.  To use (a subdirectory of)
+     your home directory, ${HOME}/some/dir, but do not put quotes around the
+     directory path; Cforall may appear to build, but the installed version may
+     not work properly.
 
 
@@ -55,6 +56,6 @@
 ======================================
 
-  $ cd ./tests
-  $ make -j 8 all-local
+   $ cd ./tests
+   $ make -j 8 all-local
 
 The tests take about 2-5 minutes and can be stopped at any time.
