;; ;; octi-load.lisp ;; ;; File to load the other files. ;; ;;---------------------------------------------- ;; This software is licensed; see the file ;; LICENSE for details. ;;---------------------------------------------- #-Allegro (defun load-compiled (fname) (let ((file (compile-file fname))) (when file (load file)))) ;;(load (make-pathname :directory *load-pathname* :name "octi-translations.lisp")) (load-compiled "octi-utilities.lisp") (load-compiled "octi.lisp") (load-compiled "octi-strategies.lisp") (load-compiled "octi-notation.lisp") (load-compiled "octi-test-cases.lisp") ;; (load-compiled "tcp.lisp") ;; (load-compiled "octi-api.lisp") (load "license.lisp")