diff --git a/GNUmakefile b/GNUmakefile
index b255a04b27023adbe711a754ac214c96e1988ab7..a7e7a23f61312cb962107a0c52a1019fa3bb7afd 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -33,7 +33,7 @@ website-copy: FORCE
 	bin/rsync-cp.sh tmp/asdf.lisp $(webhome_private)
 
 clean_dirs = $(sourceDirectory)
-clean_extensions = fasl dfsl cfsl fasl fas lib
+clean_extensions = fasl dfsl cfsl fasl fas lib dx32fsl
 
 clean: FORCE
 	@for dir in $(clean_dirs); do \
diff --git a/bin/asdf-version.sh b/bin/asdf-version.sh
new file mode 100755
index 0000000000000000000000000000000000000000..b06c04c8a618ade8c648ea7f8220ec6244591cbc
--- /dev/null
+++ b/bin/asdf-version.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+# write the highest tag to standard output
+# exit code is 1 if it cannot be found
+
+
+tag=`git describe --tags`
+if [ "$tag" == "" ]; then
+    exit 1
+fi
+echo $tag
+exit 0
diff --git a/website/source/index.mmd b/website/source/index.mmd
index 4d764af9e9b1d3e9043a9c8cab394dfba05e8e4a..b821b4f8bee8268c93dc9951c56f16b3582db947 100644
--- a/website/source/index.mmd
+++ b/website/source/index.mmd
@@ -37,7 +37,7 @@ can:
 
 * download just the source for [asdf.lisp][],
 * download the [tarball][] to get all bells and whistles,
-* pull the latest from our git repository
+* pull the latest from our git repository ([browse][git-browse])
 
         git clone http://common-lisp.net/project/asdf/asdf.git
 
diff --git a/website/source/resources/shared-header.md b/website/source/resources/shared-header.md
index 77a2c1cb3a5fdfff9cc0a434947fc413a1c8f12d..4d03b863110b0beb9f1a33cd6c6a59cf4dad8de8 100644
--- a/website/source/resources/shared-header.md
+++ b/website/source/resources/shared-header.md
@@ -5,16 +5,17 @@
 {set-property title "ASDF - Another System Definition Facility"}
 {set-property style-sheet "style.css"}
 
-  [user-guide]: user-guide.html
-  [tutorial]: user-guide.html
-  [manual]: manual.html
-  [Overview]: overview.html
-  [copyright]: copyright.html
-  [contributors]: contributors.html
-  [sys-guide]: manual.html
-  [getting-started]: getting-started.html
-  [FAQ]: faq.html
-  [tests]: test-results.html
+ [user-guide]: user-guide.html
+ [tutorial]: user-guide.html
+ [manual]: manual.html
+ [Overview]: overview.html
+ [copyright]: copyright.html
+ [contributors]: contributors.html
+ [sys-guide]: manual.html
+ [getting-started]: getting-started.html
+ [FAQ]: faq.html
+ [tests]: test-results.html
+ [git-browse]: http://common-lisp.net/gitweb?p=projects/asdf/asdf.git;a=summary
   
  [asdf-devel]: http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel
  [asdf-announce]: http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-announce