-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathuseful-macros.asd
More file actions
36 lines (34 loc) · 1.45 KB
/
Copy pathuseful-macros.asd
File metadata and controls
36 lines (34 loc) · 1.45 KB
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
29
30
31
32
33
34
35
(asdf:defsystem "useful-macros"
:description "useful-macros: a collection of widely useful macros and functions"
:version "1.0"
:author "D.McClain <dbm@spectrodynamics.com>"
:license "Copyright (c) 2008 by SpectroDynamics, LLC. All rights reserved."
:components (#+:CLOZURE (:file "clozure-compat")
#+:SBCL (:file "sbcl-compat")
(:file "packages")
(:file "package-aliases")
(:file "reader-macros")
#+:LISPWORKS (:file "ctypes")
(:file "useful-macros")
(:file "remembered-filenames")
;; (:file "useful-macros-old")
;; (:file "match-macro")
(:file "match-macro-ex")
(:file "match-macro-ex-opt")
;; (:file "match-macro-ex3")
;; (:file "monitor-macros")
(:file "memoize")
(:file "cache")
#+:WIN32 (:file "exec")
;; (:file "lazy") ;; supplanted by a better, simpler, version
(:file "engfmt")
(:file "usec")
(:file "uuid")
(:file "computed-metaclass")
#+(AND :LISPWORKS :MACOSX) (:file "OSX-UUID-Generate")
#+(AND :ALLEGRO :MACOSX) (:file "OSX-UUID-Generate-Allegro")
)
:serial t
:depends-on (#| "compiled-ml-matcher" |#
"cl-ppcre"
"ironclad"))