Index: INSTALL
===================================================================
--- INSTALL	(revision a3bd8278931e5060c160e799f3b853abe540ee87)
+++ INSTALL	(revision d6c59bce0af34706acc419cc2da88d01f9b2d2c9)
@@ -11,4 +11,5 @@
   $ ./configure [ --prefix=/some/directory ]
   $ make -j 8 install
+  $ cfa
 
 For users using the distributed tarball / github:
@@ -16,6 +17,21 @@
   $ ./configure
   $ make -j 8 install
+  $ cfa
 
 where 8 is the number of CPUs on your computer.
+
+The above instructions produce an in-tree, installed build, where intermediate
+binaries share the same folders as their sources, and where the final result
+becomes an "official" CFA version for the current environment.  For developers
+preferring an isolated side-by-side build, where all binaries are separated
+from sources, where it is possible to build multiple configurations from a
+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
 
 
