blob: 4b26eed3484aeeb0f0cd304f34baea260e30b7ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
;;; -*- mode: lisp; syntax: common-lisp; indent-tabs-mode: nil; package: cl-user -*-
(defpackage #:swank-system
(:use #:common-lisp
#:asdf))
(in-package #:swank-system)
(defsystem #:swank
:name "Swank is the Common Lisp back-end to Slime"
:licence "GPL-2"
:components
#+cmu ((:file "swank-backend")
(:file "swank")
(:file "swank-source-path-parser")
(:file "swank-cmucl"))
#+sbcl ((:file "swank-backend")
(:file "swank")
(:file "swank-source-path-parser")
(:file "swank-sbcl")
(:file "swank-gray"))
#+clisp ((:file "swank-backend")
(:file "swank")
(:file "xref")
(:file "swank-clisp")
(:file "swank-gray")))
;; swank.asd ends here
|