- gcc (version >= 4.7.2); some llvm masked as gcc was tested successfully on OSX
 - libc library headers (libc6-dev?)
 
-To build and start, do the following steps:
+To build and start, just run:
 
-$ ./build.sh
 $ ./roguelike
 
 ./roguelike is a shell script that executes a union of ./roguelike-server and
 
 # Give helpful message to players that want to start without compiling first.
 if [ ! -e ./libplomrogue.so ]
 then
-    echo 'No ./libplomrogue.so library found. Try "./build.sh" first?'
-    false
+    echo 'No ./libplomrogue.so library found. Building …'
+    ./build.sh
 fi
 
 # Use shell script's arguments for server and pipe server output to log file.