Index: install.sh
===================================================================
--- install.sh	(revision 954)
+++ install.sh	(revision 955)
@@ -13,6 +13,7 @@
 INSTALL=/usr/bin/install
 
 # Raydium headers
+echo "- Raydium headers"
 $INSTALL -d "$INCLUDES/raydium"
 $INSTALL -d "$INCLUDES/raydium/headers"
 $INSTALL -m 644 raydium/*.h "$INCLUDES/raydium"
@@ -20,22 +21,27 @@
 ln -s "index.h" "$INCLUDES/raydium/index.c" 2> /dev/null
 
 # ODE headers
+echo "- (inner) ODE headers"
 $INSTALL -d "$INCLUDES/raydium/ode/include/ode"
 $INSTALL -m 644 raydium/ode/include/ode/* "$INCLUDES/raydium/ode/include/ode"
 
 # PHP headers
+echo "- (inner) PHP headers"
 $INSTALL -d "$INCLUDES/raydium/php"
 find raydium/php -name "*.h" -exec cp --parents {} "$INCLUDES" \;
 
 # Raydium libs
+echo "- Raydium libs"
 $INSTALL -d "$LIBS"
 cp -P libray* "$LIBS"
 
 # rayphp
+echo "- RayPHP scripts"
 $INSTALL -d "$SHARE/rayphp"
 $INSTALL -m 644 rayphp/* "$SHARE/rayphp" 2> /dev/null
 
 # raydium-config
+echo "- raydium-config"
 tmp="raydium-config"
 echo "#!/bin/sh" > "$tmp"
 echo "# Generated by install.sh" >> "$tmp"
@@ -74,3 +80,6 @@
 $INSTALL -m 755 "$tmp" "$BINS"
 
 # Shouldn't we add docs & READMEs ?
+# ...
+
+echo "done."
\ No newline at end of file