5922c746769d7615f6f6fdaed949de22fe700978
[pipes.git] / pipes.asd
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          pipes.asd
6 ;;;; Purpose:       ASDF system definition for PIPES package
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; $Id: pipes.asd,v 1.3 2003/03/15 00:48:56 kevin Exp $
11 ;;;;
12 ;;;; This file, part of PIPES, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;; *************************************************************************
14
15 #+allegro (require :pxml)
16 #+(and allegro common-lisp-controller) (c-l-c::clc-require :aserve)
17 #+(and allegro (not common-lisp-controller)) (require :aserve)
18        
19 (in-package :asdf)
20
21 (defsystem :pipes
22     :perform (load-op :after (op pipes)
23                       (pushnew :pipes cl:*features*))
24     :components 
25     ((:file "package")
26      (:file "src" :depends-on ("package"))))
27
28