From c47c22a6183cb4bc062e2e89b044bfa2595d59b5 Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <fare@tunes.org> Date: Mon, 12 Sep 2016 09:42:04 -0400 Subject: [PATCH] gitignore the GNUmakefile This allows one to use: ln -s Makefile-lisp-scripting GNUmakefile Update the README accordingly. --- .gitignore | 2 ++ README.md | 8 ++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 32573ddaf..98c7cce17 100644 --- a/.gitignore +++ b/.gitignore @@ -66,3 +66,5 @@ debian/files /.DS_Store +# Hack: ignore the GNUmakefile here, so you can ln -s Makefile-lisp-scripting GNUmakefile +GNUmakefile diff --git a/README.md b/README.md index a044a385a..9b8898ecc 100644 --- a/README.md +++ b/README.md @@ -107,6 +107,10 @@ as in for instance: make -f Makefile-lisp-scripting t l=sbcl +Or you can make that your local default (assuming GNU make) using: + + ln -s Makefile-lisp-scripting GNUmakefile + These Lisp tools by default use Clozure Common Lisp (CCL) to build and run a binary `build/asdf-tools` that will orchestrate the tests. By defining and exporting the variable `LISP` to be one of `ccl`, `sbcl` or `allegro`, you @@ -118,7 +122,7 @@ that points to the executable. To use a further Common Lisp implementation, suitably edit the script [`tools/asdf-tools`](tools/asdf-tools), or, on Windows, the batch file [`tools/asdf-tools.bat`](tools/asdf-tools.bat). -(Note that as of SBCL 1.2.13, we recommend against using SBCL on Windows.) +(Note that as of SBCL 1.2.13, we recommend against using SBCL on Windows for that purpose.) Note that the executable `build/asdf-tools` is being built the first time you test ASDF. When you update ASDF, via e.g. `git pull` or a branch switch, you may have to update it, with: @@ -238,4 +242,4 @@ How do I navigate this source tree? * plenty of ideas for how to further improve ASDF. -Last updated Saturday, August 27th, 2016. +Last updated Monday, September 12th, 2016. -- GitLab