Changeset 2960
- Timestamp:
- 04/11/08 15:11:41 (7 months ago)
- Files:
-
- trunk/projects/bos/Makefile (modified) (2 diffs)
- trunk/projects/bos/build.lisp (moved) (moved from trunk/projects/bos/start.lisp)
- trunk/projects/bos/screenrc-sample (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/projects/bos/Makefile
r2358 r2960 2 2 .PHONY: all 3 3 4 cmucl.core: 5 lisp -load make-base-lisp.lisp 6 7 bos.core: cmucl.core build.sh load.lisp build.lisp 8 ./build.sh 9 10 # run with slime 11 .PHONY: slime 12 slime: bos.core 13 lisp -core bos.core -slime 14 15 # test 16 17 .PHONY: test 18 test: bos.core 19 lisp -core bos.core -run-tests -slime 4 bos.core: build.lisp 5 sbcl --load build.lisp --eval '(sb-ext:save-lisp-and-die "bos.core")' 20 6 21 7 # various cleaning stuff 22 8 .PHONY: cleancore 23 9 cleancore: 24 rm -f cmucl.core25 10 rm -f bos.core 26 11 27 12 .PHONY: cleanfasl 28 13 cleanfasl: 29 (cd ../.. && find . -name '*.x86f' | xargs rm)14 (cd ../.. && sbcl --disable-debugger --load clean.lisp --eval '(quit)') 30 15 31 16 .PHONY: cleanall … … 35 20 clean: cleancore 36 21 37 # I once had the problem that compiling38 # and loading a lisp source was fine,39 # but loading the pre-compiled fasl failed...40 41 .PHONY: crazy_build_test42 crazy_build_test:43 make cleanall44 make all45 make cleancore46 make all47 48 22 # TAGS 49 50 23 TAGS: 51 24 find . -name '*.lisp' | xargs etags -a 52 trunk/projects/bos/screenrc-sample
r2956 r2960 14 14 setenv LANG en_US.UTF-8 15 15 16 screen -t webserver sbcl -- load start.lisp--eval '(start)'16 screen -t webserver sbcl --core bos.core --eval '(start)' 17 17 #logfile screen.log 18 18 #log on 19 screen -t cert-daemon sbcl -- load start.lisp--eval '(start-cert-daemon)'19 screen -t cert-daemon sbcl --core bos.core --eval '(start-cert-daemon)' 20 20 21 21 msgminwait 1
