-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclwebctrl.asd
More file actions
31 lines (25 loc) · 904 Bytes
/
Copy pathclwebctrl.asd
File metadata and controls
31 lines (25 loc) · 904 Bytes
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
;;;; -*- Mode: Lisp -*-
;;;; Author: Philippe Brochard <pbrochard@common-lisp.net>
;;;; ASDF System Definition
(in-package #:asdf)
(defsystem clwebctrl
:description "Control a machine from a web browser"
:version "0.0"
:author "Philippe Brochard <pbrochard@common-lisp.net>"
:licence "GNU General Public License (GPL)"
:components ((:module :src
:components
((:file "tools")
(:file "shell")
(:file "net")
(:file "md5")
(:file "transfer-stream"
:depends-on ("tools" "net"))
(:file "my-http"
:depends-on ("tools" "net" "transfer-stream"))
(:file "package"
:depends-on ("tools" "net" "my-http" "transfer-stream" "shell" "md5"))
(:file "module"
:depends-on ("tools" "net" "my-http" "transfer-stream" "shell" "package"))
(:file "clwebctrl"
:depends-on ("tools" "net" "my-http" "transfer-stream" "shell" "package" "module" "md5"))))))