|
Revision 3535, 0.5 kB
(checked in by ksprotte, 1 month ago)
|
added Makefile 'start' target for bos
|
| Line | |
|---|
| 1 |
all: bos.core |
|---|
| 2 |
.PHONY: all |
|---|
| 3 |
|
|---|
| 4 |
bos.core: build.lisp |
|---|
| 5 |
env LANG=en_US.UTF-8 sbcl --load build.lisp --eval '(sb-ext:save-lisp-and-die "bos.core")' |
|---|
| 6 |
|
|---|
| 7 |
# various cleaning stuff |
|---|
| 8 |
.PHONY: cleancore |
|---|
| 9 |
cleancore: |
|---|
| 10 |
rm -f bos.core |
|---|
| 11 |
|
|---|
| 12 |
.PHONY: cleanfasl |
|---|
| 13 |
cleanfasl: |
|---|
| 14 |
(cd ../.. && sbcl --disable-debugger --load clean.lisp --eval '(quit)') |
|---|
| 15 |
|
|---|
| 16 |
.PHONY: cleanall |
|---|
| 17 |
cleanall: cleancore cleanfasl |
|---|
| 18 |
|
|---|
| 19 |
.PHONY: clean |
|---|
| 20 |
clean: cleancore |
|---|
| 21 |
|
|---|
| 22 |
.PHONY: start |
|---|
| 23 |
start: bos.core |
|---|
| 24 |
sbcl --core bos.core --eval '(start)' |
|---|
| 25 |
|
|---|
| 26 |
# TAGS |
|---|
| 27 |
TAGS: |
|---|
| 28 |
find . -name '*.lisp' | xargs etags -a |
|---|