forked from burtonsamograd/med
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmed.asd
More file actions
42 lines (38 loc) · 1.2 KB
/
med.asd
File metadata and controls
42 lines (38 loc) · 1.2 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
38
39
40
41
42
(in-package :cl-user)
(defpackage :med-asd
(:use :cl :asdf))
(in-package :med-asd)
(defsystem :med
:version "0.1"
:description "med - Mezzano EDitor"
:serial t
:components ((:file "package")
(:file "line")
(:file "mark")
(:file "editor")
(:file "save-excursion")
(:file "buffer")
(:file "buffer-stream")
(:file "point")
(:file "minibuffer")
(:file "redisplay")
(:file "keybindings")
(:file "main")
(:file "commands/commands")
(:file "commands/display")
(:file "commands/buffer")
(:file "commands/sexp")
(:file "commands/file")
(:file "commands/eval")
(:file "commands/repl")
(:file "commands/grep")
(:file "commands/find-definition")
(:file "commands/isearch")))
(defsystem :med-web
:version "0.1"
:description "Web browser for med"
:author "Henry Harrington <henry.harrington@gmail.com>"
:licence "MIT"
:serial t
:depends-on (:cl-html5-parser :med)
:components ((:file "commands/web")))