changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/doc/doc.asd

changeset 262: 5673cd3f11e1
parent: a067da6d51c1
child: f603ff88b072
author: Richard Westhaver <ellis@rwest.io>
date: Thu, 04 Apr 2024 21:43:20 -0400
permissions: -rw-r--r--
description: documentation system
1 (defsystem :doc
2  :version "0.1.0"
3  :description "Common Lisp Documentation System"
4  :depends-on (:std :organ :parse)
5  :components ((:file "pkg")
6  (:file "err")
7  (:file "symbol")
8  (:file "file")
9  (:file "package")
10  (:file "system")
11  (:file "dist")
12  (:file "image"))
13  :in-order-to ((test-op (test-op :doc/tests))))
14 
15 (defsystem :doc/tests
16  :depends-on (:rt :doc)
17  :components ((:file "tests"))
18  :perform (test-op (o c) (symbol-call :rt :do-tests :doc)))
19