Author: ksprotte Date: Fri Jan 18 05:05:56 2008 New Revision: 2347
Added: branches/bos/projects/bos/Makefile Log: Added Makefile for building / cleaning *.core
Added: branches/bos/projects/bos/Makefile ============================================================================== --- (empty file) +++ branches/bos/projects/bos/Makefile Fri Jan 18 05:05:56 2008 @@ -0,0 +1,13 @@ +all: bos.core + +cmucl.core: + lisp -load make-base-lisp.lisp + +bos.core: cmucl.core + ./build.sh + +.PHONY: clean +clean: + rm -f cmucl.core + rm -f bos.core +