|
From: Wolfgang J. <wje...@us...> - 2004-11-25 00:48:48
|
Update of /cvsroot/maxima/maxima/share/sym In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7326 Added Files: sym.system Log Message: Should make it more convenient to compile the files here. Loading should still be done via sym.mac. --- NEW FILE: sym.system --- ;;; -*- Mode:Lisp; Package:CL-MAXIMA; Syntax:COMMON-LISP; Base:10 -*-;;; (mk:defsystem "sym" :source-extension "lisp" :binary-pathname (make-pathname :directory (pathname-directory *load-truename*)) ;; Don't use separate directories because the files should be in $chemin ;; #+clisp "binary-clisp" ;; #+cmu "binary-cmucl" ;; #+sbcl "binary-sbcl" ;; #+gcl "binary-gcl" ;; #+allegro "binary-acl6" ;; #+openmcl "binary-openmcl" ;; #-(or clisp cmu sbcl gcl allegro openmcl) "binary-unknownlisp" :components ;; Reflects the order in sym1.mac. ((:module macros :source-pathname "" :components ((:file macros.lisp))) (:module un-tas-de-fichiers-quoi :source-pathname "" :depends-on (macros) :components ((:file util.lisp) (:file lecteur.lisp) (:file ecrivain.lisp) (:file operations.lisp) (:file arite.lisp) (:file elem.lisp) (:file pui.lisp) (:file chbase.lisp) (:file schur.lisp) (:file direct.lisp) (:file kak.lisp) (:file partpol.lisp) (:file multmon.lisp) (:file permut.lisp) (:file treillis.lisp) (:file resolv1.lisp) ;; (:file resolcayley.lisp) (:file tri.lisp))))) ;;; sym.system ends here |