forked from dbmcclain/vmath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvmath.asd
45 lines (40 loc) · 1.62 KB
/
vmath.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
41
42
43
44
(asdf:defsystem "vmath"
:description "vmath: a system for vectorized math"
:version "1.0"
:author "D.McClain <[email protected]>"
:license "Copyright (c) 2008 by SpectroDynamics, LLC. All rights reserved."
:components ((:file "packages")
(:file "simple-vector-ops")
(:file "vmath")
(:file "matrix")
(:file "lmfit")
(:file "linfit")
(:file "kalman")
(:file "locate")
(:file "interpolate")
(:file "monotonic-spline")
(:file "integrate")
(:file "roots")
(:file "fft-tools")
(:file "kaiser")
(:file "simplex")
#+:MACOSX
(:MODULE "Mac"
:COMPONENTS ((:file "mac_fft_intf")
(:file "fft-twids" :depends-on ("mac_fft_intf"))
(:file "mac-fft" :depends-on ("mac_fft_intf"))
(:file "mac-sfft")
(:file "mac-dfft")
(:file "mac-fft2d")
))
#+:win32
(:MODULE "Win"
:components ((:file "win_fft_intf")
(:file "win-fft" :depends-on ("win_fft_intf"))))
(:file "nr-glue")
#+:MACOSX (:file "burg")
#+:MACOSX (:file "dgesvd"))
:serial t
:depends-on ("data-objects"
#+:WIN32 "safearrays"
#-:WIN32 "c-arrays"))