|
Revision 3644, 0.5 KB
(checked in by hans, 20 months ago)
|
|
Revive cmucl support for BOS.
|
| Line | |
|---|
| 1 | LISP=lisp -noinit |
|---|
| 2 | all: bos.core |
|---|
| 3 | .PHONY: all |
|---|
| 4 | |
|---|
| 5 | bos.core: build.lisp |
|---|
| 6 | $(LISP) -load build.lisp -eval '(ext:save-lisp "bos.core")' |
|---|
| 7 | |
|---|
| 8 | # various cleaning stuff |
|---|
| 9 | .PHONY: cleancore |
|---|
| 10 | cleancore: |
|---|
| 11 | rm -f bos.core |
|---|
| 12 | |
|---|
| 13 | .PHONY: cleanfasl |
|---|
| 14 | cleanfasl: |
|---|
| 15 | (cd ../.. && $(LISP) -load clean.lisp -eval '(quit)') |
|---|
| 16 | |
|---|
| 17 | .PHONY: cleanall |
|---|
| 18 | cleanall: cleancore cleanfasl |
|---|
| 19 | |
|---|
| 20 | .PHONY: clean |
|---|
| 21 | clean: cleancore |
|---|
| 22 | |
|---|
| 23 | .PHONY: start |
|---|
| 24 | start: bos.core |
|---|
| 25 | $(LISP) -dynamic-space-size 800 -core bos.core -eval '(start)' |
|---|
| 26 | |
|---|
| 27 | # TAGS |
|---|
| 28 | TAGS: |
|---|
| 29 | find . -name '*.lisp' | xargs etags -a |
|---|