X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=lml.system;h=5e89e2cd57088395eee24603842cccfa0f8f2cf2;hb=00049fd6b7a9dcf2b1303e65439d94d9269977d3;hp=853c810b37e37e853a7bd81bc0df12b51e339408;hpb=e0f8bc541bf77c162780ea88785c6c4048f4bb5b;p=lml.git diff --git a/lml.system b/lml.system index 853c810..5e89e2c 100644 --- a/lml.system +++ b/lml.system @@ -1,20 +1,30 @@ -;;;; -*- Mode: LISP; Syntax: Common-Lisp; Base: 10 -*- -;;;; $Id: lml.system,v 1.1 2002/09/16 01:13:49 kevin Exp $ - -(declaim (optimize (speed 3) (safety 1))) +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: lml.system +;;;; Purpose: Defsystem file for Lisp Markup Language +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Aug 2002 +;;;; +;;;; $Id: lml.system,v 1.2 2002/09/16 01:41:16 kevin Exp $ +;;;; +;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; +;;;; LML users are granted the rights to distribute and use this software +;;;; as governed by the terms of the GNU General Public License v2 +;;;; (http://www.gnu.org/licenses/gpl.html) +;;;; ************************************************************************* (in-package :cl-user) (mk:defsystem :lml - :source-pathname #.(translate-logical-pathname "KLISP-CVS:lml;") + :source-pathname "CL-LIBRARY:lml;" :source-extension "cl" - :binary-pathname #.(translate-logical-pathname "KLISP-CVS:lml;bin;") :components ((:file "package") (:file "utils") :depends-on ("package") (:file "files") :depends-on ("utils") (:file "lml" :depends-on ("files")) (:file "stdsite" :depends-on ("lml")) - (:file "downloads" :depends-on ("lml")) - (:file "pgsite" :depends-on ("lml"))) - :depends-on (:genutils)) + (:file "downloads" :depends-on ("lml"))))