forked from numcl/numcl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnumcl.asd
40 lines (40 loc) · 1.57 KB
/
numcl.asd
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
;;;; Autogenerated ASD file for system "NUMCL"
;;;; In order to regenerate it, run update-asdf
;;;; from shell (see https://github.com/phoe-krk/asd-generator)
;;;; For those who do not have update-asdf,
;;;; run `ros install asd-generator` (if you have roswell installed)
;;;; There are also an interface available from lisp:
;;;; (asd-generator:regen &key im-sure)
(defsystem numcl
:version "0.1"
:author "Masataro Asai"
:mailto "[email protected]"
:license "LGPL"
:defsystem-depends-on ()
:depends-on (:trivia
:alexandria
:iterate
:type-r
:constantfold
:lisp-namespace
:cl-randist)
:serial t
:components ((:module "src"
:components ((:file "0package")
(:file "1instantiate")
(:file "1util")
(:file "1type")
(:file "2alias")
(:file "2aref")
(:file "2typeinfer")
(:file "3arange")
(:file "3array")
(:file "3copy")
(:file "3zeros")
(:file "4concatenate")
(:file "4split")
(:file "5numeric")
(:file "5reduce")
(:file "5random"))))
:description "Numpy clone in Common Lisp, using MAGICL/LLA/MGL-MAT as the backend (in the future)"
:in-order-to ((test-op (test-op :numcl.test))))