-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcleric.asd
More file actions
56 lines (54 loc) · 2.05 KB
/
cleric.asd
File metadata and controls
56 lines (54 loc) · 2.05 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
(defpackage :common-lisp-erlang-interface-system
(:nicknames :cleric-system)
(:use :cl))
(in-package :cleric-system)
(asdf:defsystem :cleric
:description "Common Lisp Erlang Interface - An implementation of the Erlang distribution protocol."
:author "Markus Flambard <mflambard@common-lisp.net>"
:version "0.2.4"
:license "MIT License"
:depends-on (:epmd
:erlang-term
:usocket
:md5
:alexandria
:com.gigamonkeys.binary-data)
:components
((:module :src
:components
((:file "packages")
(:file "listen"
:depends-on ("packages"))
(:file "local-node"
:depends-on ("packages"))
(:file "remote-node"
:depends-on ("packages"
"handshake"
"listen"
"local-node"
"atom-cache"))
(:file "atom-cache"
:depends-on ("packages"))
(:file "atom-cache-entries"
:depends-on ("packages"
"atom-cache"))
(:file "distribution-header"
:depends-on ("packages"
"atom-cache"))
(:file "handshake-protocol"
:depends-on ("packages"))
(:file "handshake"
:depends-on ("packages"
"handshake-protocol"
"local-node"
"md5"))
(:file "md5" ;; Needs MD5 library
:depends-on ("packages"))
(:file "control-message"
:depends-on ("packages"))
(:file "node-protocol"
:depends-on ("packages"
"distribution-header"
"control-message"
"remote-node"))
))))