;;;; config ;;;; start slime (M-x slime ) ;;;; go to this buffer and load it (C-c C-l ) (let (files) (defun make (&optional verbosep &rest new ) (labels ((make0 (x) (format t "~a " x) (load x))) (format t "~&;") (if new (setf files new)) (if verbosep (mapcar #'make0 files) (handler-bind ; SBCL-specific ((style-warning #'muffle-warning)) (mapcar #'make0 files))) (terpri) t)) ) (make nil "lib/deftest.lisp" "lib/macros.lisp" "lib/lib.lisp" "lib/hash.lisp" "lib/bestof.lisp" "lib/random.lisp" "lib/profile.lisp" )