-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtao-compat.asd
63 lines (59 loc) · 1.84 KB
/
tao-compat.asd
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; -*-
(in-package #:cl-user)
(asdf:defsystem #:tao-compat
:name "tao-compat"
:description "TAO Compatible package for CL"
:author "CHIBA Masaomi <[email protected]>"
:maintainer "CHIBA Masaomi <[email protected]>"
:version "0.24.10.23"
:serial t
:components ((:file "package")
(:file "common-lisp-world")
(:file "decl")
(:file "util")
(:file "var")
(:file "trail")
(:file "auxfns")
(:file "object")
(:file "tao-q")
(:file "tao-s")
(:file "unify")
(:file "prolog")
(:file "prologc")
(:file "prologcp")
(:file "reader")
(:file "readtable" :depends-on ("package"))
(:file "tao-world")
(:file "tao-z")
(:file "tao-x")
(:file "tao-j")
(:file "tao-k")
(:file "tao-y")
;; q
(:file "tao-h")
(:file "tao-o")
(:file "tao-v")
(:file "tao-w")
(:file "tao-u")
(:file "tao-i")
;;
(:file "tao-e" :depends-on ("tao-s"))
(:file "tao-g")
(:file "tao-t")
(:file "tao-b")
(:file "tao-f")
(:file "tao-n")
;; l
(:file "tao-r")
(:file "tao-p" :depends-on ("tao-t"))
(:file "tao-m")
(:file "tao-a")
(:file "tao-d")
(:file "tao-c")
(:file "tao-0")
;;
(:file "tao-l")
;; s
(:file "tao-ext"))
:depends-on (#:cl-ppcre #:babel #:closer-mop))
;;; *EOF*