diff options
author | dos-reis <gdr@axiomatics.org> | 2008-01-29 00:37:59 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-01-29 00:37:59 +0000 |
commit | fd939b875ff1ed38ac3d22684b0f745705ab834a (patch) | |
tree | 37f24236cd8d3ec71075542ee55133262f37f09d | |
parent | 8376deea46219c43e78477d8a233605ad0c19ad9 (diff) | |
download | open-axiom-fd939b875ff1ed38ac3d22684b0f745705ab834a.tar.gz |
SBCL does not require much fiddling
-rw-r--r-- | src/lisp/Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lisp/Makefile.in b/src/lisp/Makefile.in index 8537f1fb..127d76a7 100644 --- a/src/lisp/Makefile.in +++ b/src/lisp/Makefile.in @@ -102,6 +102,12 @@ ifeq (@axiom_lisp_flavor@,gcl) | ./base-lisp$(EXEEXT) $(mkinstalldirs) $(OUT) $(INSTALL_PROGRAM) lisp$(EXEEXT) $(OUT) +else ifeq (@axiom_lisp_flavor@,sbcl) + $(mkinstalldirs) $(OUT) + $(INSTALL_PROGRAM) $< $@ && $(INSTALL_PROGRAM) $< lisp$(EXEEXT) +else + echo "Don't know how to build $@ for this Lisp" + exit 1 endif ifeq (@axiom_lisp_flavor@,ecl) |