Skip to content
Snippets Groups Projects
Commit 0f531a35 authored by Gary King's avatar Gary King
Browse files

Added link to ASDF's gitweb

parent 9b1342bb
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,7 @@ website-copy: FORCE ...@@ -33,7 +33,7 @@ website-copy: FORCE
bin/rsync-cp.sh tmp/asdf.lisp $(webhome_private) bin/rsync-cp.sh tmp/asdf.lisp $(webhome_private)
clean_dirs = $(sourceDirectory) clean_dirs = $(sourceDirectory)
clean_extensions = fasl dfsl cfsl fasl fas lib clean_extensions = fasl dfsl cfsl fasl fas lib dx32fsl
clean: FORCE clean: FORCE
@for dir in $(clean_dirs); do \ @for dir in $(clean_dirs); do \
......
#!/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
...@@ -37,7 +37,7 @@ can: ...@@ -37,7 +37,7 @@ can:
* download just the source for [asdf.lisp][], * download just the source for [asdf.lisp][],
* download the [tarball][] to get all bells and whistles, * 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 git clone http://common-lisp.net/project/asdf/asdf.git
......
...@@ -5,16 +5,17 @@ ...@@ -5,16 +5,17 @@
{set-property title "ASDF - Another System Definition Facility"} {set-property title "ASDF - Another System Definition Facility"}
{set-property style-sheet "style.css"} {set-property style-sheet "style.css"}
[user-guide]: user-guide.html [user-guide]: user-guide.html
[tutorial]: user-guide.html [tutorial]: user-guide.html
[manual]: manual.html [manual]: manual.html
[Overview]: overview.html [Overview]: overview.html
[copyright]: copyright.html [copyright]: copyright.html
[contributors]: contributors.html [contributors]: contributors.html
[sys-guide]: manual.html [sys-guide]: manual.html
[getting-started]: getting-started.html [getting-started]: getting-started.html
[FAQ]: faq.html [FAQ]: faq.html
[tests]: test-results.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-devel]: http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel
[asdf-announce]: http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-announce [asdf-announce]: http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-announce
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment