fink/env.lisp

22 lines
716 B
Common Lisp
Raw Permalink 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-06-21 08:03:06 +02:00
(defparameter *src-files* '("packages" "macro-utils" "netpipe" "board" "liberty" "shape" "liberty-shape" "gobot" "gtp" "fink"))
2008-05-26 21:13:18 +02:00
(defun recompile ()
(loop for file in *src-files* do (compile-file (concatenate 'string *src-root* file ".lisp"))))
2008-05-26 21:13:18 +02:00
(recompile)
(load (concatenate 'string *src-root* "fink.fasl"))