|
Revision 3990, 0.7 KB
(checked in by hans, 23 months ago)
|
|
Rewrote cert daemon in bourne shell, handle two-page certificate.
|
| Line | |
|---|
| 1 | all: bos.core |
|---|
| 2 | .PHONY: all |
|---|
| 3 | |
|---|
| 4 | SBCL_BUILD=env LC_CTYPE=en_US.UTF-8 HOME=/home/bknr sbcl --dynamic-space-size 800 --no-userinit |
|---|
| 5 | SBCL_RUN=env LC_CTYPE=en_US.ISO8859-1 sbcl --core bos.core --dynamic-space-size 800 --no-userinit |
|---|
| 6 | |
|---|
| 7 | bos.core: build.lisp |
|---|
| 8 | $(SBCL_BUILD) --load build.lisp --eval '(sb-ext:save-lisp-and-die "bos.core")' |
|---|
| 9 | |
|---|
| 10 | # various cleaning stuff |
|---|
| 11 | .PHONY: cleancore |
|---|
| 12 | cleancore: |
|---|
| 13 | rm -f bos.core |
|---|
| 14 | |
|---|
| 15 | .PHONY: cleanfasl |
|---|
| 16 | cleanfasl: |
|---|
| 17 | (cd ../.. && sbcl --no-userinit --disable-debugger --load clean.lisp --eval '(quit)') |
|---|
| 18 | |
|---|
| 19 | .PHONY: cleanall |
|---|
| 20 | cleanall: cleancore cleanfasl |
|---|
| 21 | |
|---|
| 22 | .PHONY: clean |
|---|
| 23 | clean: cleancore |
|---|
| 24 | |
|---|
| 25 | .PHONY: start |
|---|
| 26 | start: bos.core |
|---|
| 27 | $(SBCL_RUN) --eval '(start)' |
|---|
| 28 | |
|---|
| 29 | # TAGS |
|---|
| 30 | TAGS: |
|---|
| 31 | find . -name '*.lisp' | xargs etags -a |
|---|