blob: 8e2fa8546bc9835fb591d42bfa709639a60efd85 (
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
|
;;; -*- mode: lisp; syntax: common-lisp; base: 10; package: common-lisp-user -*-
(in-package #:common-lisp-user)
(defpackage #:swank
(:use #:asdf
#:common-lisp)
(:export #:start-server #:create-swank-server
#:*sldb-pprint-frames*))
(in-package #:swank)
(defsystem #:swank
:name "Swank is the Common Lisp back-end to Slime"
:author "Matthew Kennedy <mkennedy@gentoo.org>"
:maintainer "Matthew Kennedy <mkennedy@gentoo.org>"
:licence "GPL-2"
:components ((:file "swank")
(:file "swank-backend" :depends-on ("swank"))
(:file "null-swank-impl" :depends-on ("swank-backend"))
;; (:file "swank-backend" :depends-on ("null-swank-impl"))
;; (:file "null-swank-impl" :depends-on ("swank"))
#+cmu (:file "swank-cmucl" :depends-on ("null-swank-impl"))
#+sbcl (:file "swank-sbcl" :depends-on ("null-swank-impl"))))
|