-
Notifications
You must be signed in to change notification settings - Fork 12
/
plotter.asd
39 lines (37 loc) · 1.48 KB
/
plotter.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
(asdf:defsystem "plotter"
:description "plotter: Scientific data plotting"
:version "1.0"
:author "D.McClain <[email protected]>"
:license "Copyright (c) 2008 by SpectroDynamics, LLC. All rights reserved."
:components ((:file "packages")
(:file "constants")
#+:MACOSX (:file "mac-plotter-stuff")
(:file "scanner")
(:file "plotter-classes")
(:file "plotter-compat")
(:file "plotter-nans")
(:file "plotter-mp")
(:file "plotter-macros")
(:file "plotter-arrays")
(:file "plotter-boxes")
(:file "plotter-autorange")
(:file "graphics-state")
(:file "pane-locations")
(:file "plotter-strings")
(:file "prep-vectors")
(:file "plotter-drawing")
(:file "plotter-watermark")
(:file "plotter-axes")
(:file "plotter-legends")
(:file "plotter-styles")
(:file "plotter-commands")
(:file "plotter-callbacks")
(:file "plotter-windows")
(:file "plotter-histogram")
(:file "plotter-images")
(:file "parametric-plotting")
(:file "read-colormaps")
(:file "plotting"))
:serial t
:depends-on ("com.ral.vmath"
"com.ral.useful-macros"))