r3357: remove load-compile-op from .asd file
[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.2 2002/11/08 16:51:40 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 "pipes" :depends-on ("package"))))
27
28