General source tree makefile cleanups: Made `making xxx in yyy...' display
consistent in the source tree and replaced `/bin/rm' by `rm'. Additonally
cleaned up the `make links' target: Remove unnecessary semicolons, subsequent
redundant removes, inline point.sh into mklink.sh to speed processing and no
longer clutter the display with confusing stuff. Instead only the actually
done links are displayed.
diff --git a/util/point.sh b/util/point.sh
index 92c12e8..47543c8 100755
--- a/util/point.sh
+++ b/util/point.sh
@@ -1,4 +1,6 @@
#!/bin/sh
-/bin/rm -f $2
+rm -f $2
ln -s $1 $2
+echo "$2 => $1"
+