;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; ;;;; Name: pipes.asd ;;;; Purpose: ASDF system definition for PIPES package ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; ;;;; $Id: pipes.asd,v 1.3 2003/03/15 00:48:56 kevin Exp $ ;;;; ;;;; This file, part of PIPES, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ************************************************************************* #+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) (defsystem :pipes :perform (load-op :after (op pipes) (pushnew :pipes cl:*features*)) :components ((:file "package") (:file "src" :depends-on ("package"))))