chiark
/
gitweb
/
~mdw
/
lisp
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
syscall: Don't require (function ...) for the name argument.
[lisp]
/
mdw.asd
1
;;; -*-lisp-*-
2
3
(defpackage #:mdw.asdf
4
(:use #:common-lisp #:asdf))
5
(in-package #:mdw.asdf)
6
7
(defsystem "mdw"
8
:components ((:file "mdw-base")
9
(:file "anaphora")
10
(:file "sys-base")
11
(:file "str")
12
(:file "collect")
13
(:file "unix")
14
(:file "safely")
15
(:file "optparse"))
16
:serial t)