X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=pipes.asd;h=a8be42423b88a7aaf5e31fe46da046855e2fb4a9;hb=692c4be5bf0688806d3df9530a014ec02ad53c78;hp=da527cd2ebdee01d6eabdb082d454b24d48575ec;hpb=108cf113175bc41454b5b028d78fe00e67c37d83;p=pipes.git diff --git a/pipes.asd b/pipes.asd index da527cd..a8be424 100644 --- a/pipes.asd +++ b/pipes.asd @@ -7,30 +7,17 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: pipes.asd,v 1.1 2002/11/02 17:49:10 kevin Exp $ +;;;; $Id$ ;;;; ;;;; This file, part of PIPES, is Copyright (c) 2002 by Kevin M. Rosenberg -;;;; -;;;; PIPES users are granted the rights to distribute and use this software -;;;; as governed by the terms of the Lisp Lesser GNU Public License -;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* -#+allegro (require :pxml) -#+(and allegro common-lisp-controller) (c-l-c::clc-require :aserve) -#+(and allegro (not common-lisp-controller)) (require :aserve) - -(in-package :asdf) +(defpackage #:pipes-system (:use #:cl #:asdf)) +(in-package :pipes-system) -(defsystem :pipes - :perform (load-op :after (op pipes) - (pushnew :pipes cl:*features*)) +(defsystem pipes :components ((:file "package") - (:file "pipes" :depends-on ("package")))) - + (:file "src" :depends-on ("package")))) -(when (ignore-errors (find-class 'load-compiled-op)) - (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :pipes)))) - (pushnew :pipes cl:*features*)))