-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmpcompat.asd
More file actions
18 lines (17 loc) · 769 Bytes
/
mpcompat.asd
File metadata and controls
18 lines (17 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(asdf:defsystem "mpcompat"
:description "mpcompat: a compatibility API for multiprocessing"
:version "1.0"
:author "D.McClain <dbm@spectrodynamics.com>"
:license "Copyright (c) 2010 by SpectroDynamics, LLC. All rights reserved."
:components ((:file "packages")
#+:LISPWORKS (:file "mp-compat-lw")
#+:LISPWORKS5 (:file "mp-compat-lw5")
#+:LISPWORKS6 (:file "mp-compat-lw6")
#+:ALLEGRO (:file "mp-compat-allegro")
#+:SBCL (:file "mp-compat-sbcl")
#+:CLOZURE (:file "mp-compat-clozure")
(:file "mp-compat-critical")
;; (:file "multi-locks")
)
:serial t
:depends-on ("useful-macros"))