-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathetap.asd
71 lines (71 loc) · 1.81 KB
/
etap.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
(asdf:defsystem :etap
:description "The Experimental Typesetting Algorithms Platform"
:author "Didier Verna"
:mailto "didier@didierverna.net"
:homepage
"http://www.lrde.epita.fr/~didier/software/lisp/typesetting.php#etap"
:source-control "https://github.com/didierverna/etap"
:license "BSD"
;; :version 1.0
:depends-on (:net.didierverna.tfm)
:components
((:module "src"
:serial t
:components
((:file "meta")
(:module "util"
:serial t
:components
((:file "misc")
(:file "arith")))
(:module "font"
:serial t
:components
((:file "glyphlist.txt")
(:file "lm-ec.enc")
(:file "lm-ec")
(:file "font")))
(:module "language"
:serial t
:components
((:file "common")
(:module "hyphenation"
:serial t
:components
((:file "rules")
(:file "load")
(:file "hyphenate")))
(:file "language")
(:file "text")))
(:module "typesetting"
:serial t
:components
((:file "common")
(:module "paragraph"
:serial t
:components
((:file "hlist")
(:file "common")
(:module "algorithms"
:components
((:file "common")
(:file "lineup" :depends-on ("common"))
(:file "breakup" :depends-on ("lineup"))
(:file "fixed" :depends-on ("breakup"))
(:file "fit" :depends-on ("fixed"))
(:file "barnett" :depends-on ("fixed"))
(:file "graph" :depends-on ("breakup"))
(:file "duncan" :depends-on ("graph"))
(:file "kp" :depends-on ("graph"))))
(:file "paragraph")
(:file "rivers")))))
(:file "context")
(:module "interface"
:components
((:file "capi" :if-feature :lispworks)))
(:module "experiments"
:serial t
:components
((:file "scalar")
(:file "graph")))
(:file "post")))))