root/trunk/projects/bos/Makefile.cmucl

Revision 3644, 0.5 KB (checked in by hans, 2 years ago)

Revive cmucl support for BOS.

Line 
1LISP=lisp -noinit
2all: bos.core
3.PHONY: all
4
5bos.core: build.lisp
6        $(LISP) -load build.lisp -eval '(ext:save-lisp "bos.core")'
7
8# various cleaning stuff
9.PHONY: cleancore
10cleancore:
11        rm -f bos.core
12
13.PHONY: cleanfasl
14cleanfasl:
15        (cd ../.. && $(LISP) -load clean.lisp -eval '(quit)')
16
17.PHONY: cleanall
18cleanall: cleancore cleanfasl
19
20.PHONY: clean
21clean: cleancore
22
23.PHONY: start
24start: bos.core
25        $(LISP) -dynamic-space-size 800 -core bos.core -eval '(start)'
26
27# TAGS
28TAGS:
29        find . -name '*.lisp' | xargs etags -a
Note: See TracBrowser for help on using the browser.