fink/env.lisp

26 lines
887 B
Common Lisp
Raw Normal View History

2008-05-05 17:00:06 +02:00
(in-package :common-lisp)
2008-05-07 11:07:47 +02:00
;(setf *invoke-debugger-hook*
; (lambda (condition hook)
; (declare (ignore hook))
;; Uncomment to get backtraces on errors
;; (sb-debug:backtrace 20)
; (format *error-output* "Error: ~A~%" condition)
; (quit)))
2008-05-05 17:00:06 +02:00
(defparameter *src-root* "/home/dan/src/my/gobot/")
2008-05-26 21:13:18 +02:00
(defun recompile ()
(compile-file (concatenate 'string *src-root* "packages.lisp"))
(compile-file (concatenate 'string *src-root* "macro-utils.lisp"))
(compile-file (concatenate 'string *src-root* "netpipe.lisp"))
(compile-file (concatenate 'string *src-root* "board.lisp"))
(compile-file (concatenate 'string *src-root* "gobot.lisp"))
(compile-file (concatenate 'string *src-root* "gtp.lisp"))
(compile-file (concatenate 'string *src-root* "fink.lisp")))
(recompile)
2008-05-19 06:00:04 +02:00