chiark
/
gitweb
/
~mdw
/
clg
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
c019843a7a421d08ea76f3528bc353ebee7eb095
[clg]
/
tools
/
clg-tools.asd
1
;;; -*- Mode: lisp -*-
2
3
(defpackage #:clg-tools
4
(:use #:common-lisp #:asdf))
5
6
7
(in-package #:clg-tools)
8
9
10
(defsystem clg-tools
11
:components ((:file "autoexport")
12
(:file "utils")
13
(:file "config" :depends-on ("utils"))
14
(:file "asdf-extensions" :depends-on ("utils"))))
15