forked from dbmcclain/vmath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvmath.asd
More file actions
38 lines (33 loc) · 1.35 KB
/
vmath.asd
File metadata and controls
38 lines (33 loc) · 1.35 KB
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
(asdf:defsystem "vmath"
:description "vmath: a system for vectorized math"
:version "1.0"
:author "D.McClain <dbm@spectrodynamics.com>"
: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")
#+:MACOSX
(:MODULE "Mac"
:COMPONENTS ((:file "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"))))
#+:MACOSX (:file "dgesvd"))
:serial t
:depends-on ("data-objects"
#+:WIN32 "safearrays"
#-:WIN32 "c-arrays"))