1 Apr
2008
1 Apr
'08
9:12 p.m.
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