[Cl-darcs-cvs] r180 - cl-darcs/trunk

mhenoch at common-lisp.net mhenoch at common-lisp.net
Tue Apr 1 21:12:15 UTC 2008


Author: mhenoch
Date: Tue Apr  1 16:12:14 2008
New Revision: 180

Added:
   cl-darcs/trunk/Makefile   (contents, props changed)
Log:
Add basic Makefile


Added: cl-darcs/trunk/Makefile
==============================================================================
--- (empty file)
+++ cl-darcs/trunk/Makefile	Tue Apr  1 16:12:14 2008
@@ -0,0 +1,14 @@
+CLISP ?= clisp
+CLISP_OPTIONS ?= -i $(HOME)/.clisprc
+SBCL ?= sbcl
+SBCL_OPTIONS ?= --disable-debugger
+
+any:
+	@echo Use either \"$(MAKE) clisp\" or \"$(MAKE) sbcl\".
+	@false
+
+clisp:
+	$(CLISP) $(CLISP_OPTIONS) dump-clisp.lisp
+
+sbcl:
+	$(SBCL) $(SBCL_OPTIONS) --load dump-sbcl.lisp



More information about the Cl-darcs-cvs mailing list