lsfloat needed for mach-eps.
[CommonLispStat.git] / lispstat.asd
blobdc22242780616667085b082ae98e8a879d849e36
1 ;;  -*- mode: lisp -*-
3 ;;; Copyright (c) 2005--2006, by AJ Rossini <blindglobe@gmail.com>
4 ;;; ASDF packaging for CommonLispStat
5 ;;; Provided under a BSD license.
7 ;;(asdf:oos 'asdf:load-op 'cffi)
9 (defpackage #:lispstat-system
10     (:use :asdf :common-lisp))
12 (in-package #:lispstat-system)
14 ;;; To avoid renaming everything from *.lsp to *.lisp...
15 ;;; borrowed from Cyrus Harmon's work, for example for the ch-util.
16 (defclass lispstat-lsp-source-file (cl-source-file) ())
17 (defparameter *fasl-directory*
18    (make-pathname :directory '(:relative #+sbcl "sbcl-fasl"
19                               #+openmcl "openmcl-fasl"
20                               #+cmucl "cmucl-fasl"
21                               #+clisp "clisp-fasl"
22                               #-(or sbcl openmcl clisp cmucl) "fasl")))
24 (defmethod source-file-type ((c lispstat-lsp-source-file) (s module)) "lsp")
25 (defmethod asdf::output-files :around ((operation compile-op)
26                                        (c lispstat-lsp-source-file))
27   (list (merge-pathnames *fasl-directory*
28                          (compile-file-pathname (component-pathname c)))))
29 ;;; again, thanks to Cyrus for saving me time...
32 (defsystem "lispstat"
33   :version #.(with-open-file
34                  (vers (merge-pathnames "version.lisp-expr" *load-truename*))
35                (read vers))
36   :author "A.J. Rossini <blindglobe@gmail.com>"
37   :license "BSD"
38   :description "CommonLispStat (CLS): A System for Statistical Computing with Common Lisp;
39 based on CLS by Luke Tierney <luke@stat.uiowa.edu> (originally written when Luke was at CMU, apparently).
40 Last touched 1991, then in 2005--2007."
41   :serial t
42   :depends-on (:cffi :lift) ;;  :clem) not yet but soon!
43   :components ((:static-file "version" :pathname #p"version.lisp-expr")
44                (:lispstat-lsp-source-file "lsobjects")
45                (:lispstat-lsp-source-file "cffiglue")
46                (:lispstat-lsp-source-file "defsys")
47                (:lispstat-lsp-source-file "fastmap")
48                (:lispstat-lsp-source-file "lstypes")
49                (:lispstat-lsp-source-file "lsfloat")
51                (:lispstat-lsp-source-file "compound" 
52                                           :depends-on ("lsobjects"
53                                                        "fastmap"))
54                (:lispstat-lsp-source-file "lsmacros" 
55                                           :depends-on ("compound"))
57                (:lispstat-lsp-source-file "dists"
58                                           :depends-on ("cffiglue"
59                                                        "lsmacros"))
61                (:lispstat-lsp-source-file "lsmath"
62                                           :depends-on ("lsobjects"
63                                                        "compound"
64                                                        "lsmacros"
65                                                        "lsfloat"))
68                (:lispstat-lsp-source-file "matrices"
69                                           :depends-on ("cffiglue"
70                                                        "compound"))
72                (:lispstat-lsp-source-file "ladata"
73                                           :depends-on ("cffiglue"
74                                                        "defsys"
75                                                        "lstypes"
76                                                        "compound"
77                                                        "matrices"))
79                (:lispstat-lsp-source-file "linalg"
80                                           :depends-on ("cffiglue"
81                                                        "lsmath"
82                                                        "matrices"
83                                                        "ladata"
84                                                        "lsfloat"
85                                                        "lstypes"
86                                                        "compound"))
88                (:file "data" :depends-on ("lsobjects"
89                                           "compound"
90                                           "matrices"
91                                           "linalg"))
93                ;; there is a circ reference which we need to solve.
94                (:lispstat-lsp-source-file "lsbasics"
95                                           :depends-on ("lsobjects"
96                                                        "lstypes"
97                                                        "lsmacros"
98                                                        "lsfloat"
99                                                        "matrices"
100                                                        "linalg"
101                                                        "dists"))
103                (:lispstat-lsp-source-file "statistics"
104                                           :depends-on ("lsobjects"
105                                                        "lsbasics"
106                                                        "compound"
107                                                        "ladata" "matrices" "linalg"
108                                                        "lsmath"
109                                                        "data" ))
111                (:file "optimize" :depends-on ("lsobjects"
112                                               "cffiglue"
113                                               "lstypes"
114                                               "compound"
115                                               "lsmath"
116                                               "lsfloat"
117                                               "lsbasics"
118                                               "matrices"
119                                               "ladata"
120                                               "linalg"))
121                
122                ;; Applications
123                (:lispstat-lsp-source-file "regression"
124                                           :depends-on ("lsobjects"
125                                                        "lsbasics"))
126 ;              (:lispstat-lsp-source-file "nonlin"
127 ;                                         :depends-on ("regression"))
129 ;              (:lispstat-lsp-source-file "bayes"
130 ;                                         :depends-on ("lsobjects"
131 ;                                                      "lsmath"
132 ;                                                      "dists"))
135                (:file "ls-user" :depends-on ("lsobjects"
136                                              "lsbasics"
137                                              ;; and more!
138                                              ))
139                ))