File: sym.system

package info (click to toggle)
maxima 5.10.0-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 44,268 kB
  • ctags: 17,987
  • sloc: lisp: 152,894; fortran: 14,667; perl: 14,204; tcl: 10,103; sh: 3,376; makefile: 2,202; ansic: 471; awk: 7
file content (43 lines) | stat: -rw-r--r-- 1,306 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
;;; -*- 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