source: main/dso-simple-template.asd

Last change on this file was main,1, checked in by David Owen <dsowen@…>, 18 years ago

First version.

File size: 973 bytes
Line 
1;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp -*-
2
3#|
4Copyright (C) 2008  David Owen <dsowen@fugue88.ws>
5
6This program is free software: you can redistribute it and/or modify
7it under the terms of the GNU Lesser Public License as published by
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14GNU Lesser Public License for more details.
15
16You should have received a copy of the GNU Lesser Public License
17along with this program.  If not, see <http://www.gnu.org/licenses/>.
18|#
19
20(asdf:defsystem #:dso-simple-template
21  :depends-on (#:dso-parse)
22  :components ((:file "env")
23               (:file "inst" :depends-on ("env" "templ"))
24               (:file "templ")
25               (:file "package" :depends-on ("env" "inst" "templ"))))
Note: See TracBrowser for help on using the repository browser.