chiark
/
gitweb
/
~mdw
/
clg
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Renamed to defpackage.lisp
[clg]
/
tools
/
clg-tools.asd
1
;;; -*- Mode: lisp -*-
2
3
(defpackage #:clg-tools
4
(:use #:common-lisp #:asdf)
5
)
6
7
8
(in-package #:clg-tools)
9
10
11
(defsystem clg-tools
12
:depends-on (uffi)
13
:components ((:file "autoexport")
14
(:file "config")
15
(:file "sharedlib")
16
(:file "asdf-extensions")))
17