-
Notifications
You must be signed in to change notification settings - Fork 0
/
CLiX-Transform.system
32 lines (29 loc) · 1.01 KB
/
CLiX-Transform.system
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
;;;; -*-Mode: LISP; Package: CL-USER; Syntax: ANSI-Common-lisp -*-
;;;; CLiX --- Common Lisp (improves|incorporates|infiltrates|is) XML
;;;; This is copyrighted software. See documentation for terms.
;;;;
;;;; CLiX-Transform.system --- CLiX Transformation system definition
;;;;
;;;; Checkout Tag: $Name: $
;;;; $Id: CLiX-Transform.system,v 1.2 2000/10/26 17:27:37 dent Exp $
(in-package :MAKE)
;;;; %File Description:
;;;;
;;;;
;;;;
(defsystem "CLiX-Transform"
:source-pathname #.(merge-pathnames
"src/"
(make-pathname :name nil :type nil :version nil
:defaults *load-truename*))
:source-extension "lisp"
:components
((:module "transformation"
:source-pathname "transformation"
:components
((:file "package")
(:file "pattern" :depends-on ("package"))
(:file "xml-patterns" :depends-on ("package" "pattern"))
(:file "matching" :depends-on ("package" "pattern"))
(:file "wuja" :depends-on ("package" "pattern")))))
:depends-on ("CLiX"))