--- freem_bm/build.sh	2025/01/22 13:44:04	1.1
+++ freem_bm/build.sh	2025/01/22 15:37:03	1.2
@@ -2,9 +2,11 @@
 
 PATH=/usr/local/bin:$PATH
 
+echo "--- checking out FreeM source code"
 cvs -d:pserver:anonymous@cvs.coherent-logic.com:/home/cvsroot co freem
+
+echo "--- running autoreconf --install"
 cd freem
-pwd
 autoreconf --install
 if [ $? -ne 0 ]
 then
@@ -12,6 +14,7 @@ then
     exit 1
 fi
 
+echo "--- running configure"
 ./configure
 if [ $? -ne 0 ]
 then
@@ -19,6 +22,7 @@ then
     exit 1
 fi
 
+echo "--- running make"
 make
 if [ $? -ne 0 ]
 then