File: sym.system

package info (click to toggle)
maxima 5.47.0-9
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 193,104 kB
  • sloc: lisp: 434,678; fortran: 14,665; tcl: 10,990; sh: 4,577; makefile: 2,763; ansic: 447; java: 328; python: 262; perl: 201; xml: 60; awk: 28; sed: 15; javascript: 2
file content (33 lines) | stat: -rw-r--r-- 939 bytes parent folder | download | duplicates (14)
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
;;; -*- Mode:Lisp; Package:CL-MAXIMA; Syntax:COMMON-LISP; Base:10 -*-;;;

(mk:defsystem "sym"
    :source-extension "lisp"
    :binary-pathname (maxima::maxima-objdir "share" "sym")
    :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