-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclradio.asd
More file actions
24 lines (21 loc) · 840 Bytes
/
clradio.asd
File metadata and controls
24 lines (21 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(defpackage :org.facefault.clradio-system
(:use :common-lisp :asdf))
(in-package :org.facefault.clradio-system)
(defsystem clradio
:author "Brad Ackerman <brad@facefault.org>"
:version "0.1"
:maintainer "Brad Ackerman <brad@facefault.org>"
:licence "ISC-like for serial.lisp; rest is WTFPL"
:description "Radio memory stuff thingy."
:components
((:file "packages")
(:file "alinco-comm" :depends-on ("packages" "serial" "io"))
(:file "memory" :depends-on ("packages"))
(:file "serial" :depends-on ("packages"))
(:file "io" :depends-on ("packages"))
(:file "squelch" :depends-on ("packages"))
;; Radio descriptions
(:file "icom" :depends-on ("packages"))
;; Tests
(:file "clradio-tests" :depends-on ("packages")))
:depends-on (:alexandria :lisp-unit))