r7836: set svn:ignore for fasls
[rt.git] / rt.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          rt.asd
6 ;;;; Purpose:       ASDF definition file for Rt
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Sep 2002
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of cl-rt, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; cl-rt users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the GNU Lesser General Public License 
16 ;;;; (http://www.gnu.org/licenses/lgpl.html)
17 ;;;; *************************************************************************
18
19 (in-package :asdf)
20
21 (defsystem :rt
22   :name "cl-rt"
23   :version "1990.12.19"
24   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
25   :licence "MIT"
26   :description "MIT Regression Tester"
27   :long-description "RT provides a framework for writing regression test suites"
28   :perform (load-op :after (op rt)
29             (pushnew :rt cl:*features*))
30   :components
31   ((:file "rt")))
32
33