Fix typo in display-html-help
[maxima.git] / share / linearalgebra / load-linearalgebra-lisp-files.lisp
blobe4b932d2f740627305806672c5b36e35bd59f1eb
1 ;; Load all Lisp files within WITH-COMPILATION-UNIT macro.
2 ;; This quiets the undefined function warnings from SBCL
3 ;; which are otherwise very voluminous (and this construct
4 ;; is accepted by other CL implementations).
6 #+(or ecl abcl)
7 ($load "lisp-utils/defsystem.lisp")
9 (mk:defsystem linearalgebra
10 :source-pathname (maxima::maxima-load-pathname-directory)
11 :binary-pathname (maxima::maxima-objdir "share" "linearalgebra")
12 :source-extension "lisp"
13 :components
14 ((:file "mring")
15 (:file "lu")
16 (:file "linalgcholesky")
17 (:file "eigens-by-jacobi")
18 (:file "linalg-extra")
19 (:file "matrixexp")
20 (:file "linalg-utilities")))
22 (with-compilation-unit ()
23 (mk:oos "linearalgebra" :compile))