-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkpml-examples.asd
60 lines (58 loc) · 2.03 KB
/
kpml-examples.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
; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(in-package :cl-user)
(asdf:defsystem kpml-examples
:name "kpml-examples"
:author "Mihai Pomarlan <[email protected]>"
:maintainer "Mihai Pomarlan <[email protected]>"
:licence "BSD"
:description "Newer versions of KPML examples."
:depends-on ()
:components
((:module "src"
:components
((:file "package")
(:file "utils" :depends-on ("package"))
(:module "reuters" :depends-on ("package" "utils")
:components
((:file "REUTERS2")
(:file "REUTERS19")
))
(:module "concessions" :depends-on ("package" "utils")
:components
((:file "CONC-ALSO")
(:file "CONC-CONJUNCTIVE")
(:file "CONC-COORD1")
(:file "CONC-COORD2")
(:file "CONC-FINAL")
(:file "CONC-PP1")
(:file "CONC-PP2")
(:file "CONC-PP3")
(:file "CONC-SUB-EXT")
(:file "CONC-SUB-RST1")
(:file "CONC-TEST1")
(:file "CONC-TEST2")
(:file "CONC-THEMATIC")
(:file "CONC-THEN")))
(:module "comparatives" :depends-on ("package" "utils")
:components
((:file "COMP-DOUBLE-PROP1")
(:file "COMP-DOUBLE-PROP2")
(:file "COMP-FARMORE")
(:file "COMP-MORE")
(:file "COMP-MUCHMORE")
(:file "COMP-VERYMUCHMORE")
(:file "COMP-SINGLE-PROP")
(:file "COMP-TRIPLE-AS")
(:file "COMP-TRIPLE-LESS")
(:file "COMP-TRIPLE-PROP")
))
(:module "komet" :depends-on ("package" "utils")
:components
((:file "BEHRENS1")
(:file "BEHRENS1A")
(:file "BEHRENS2")
(:file "BEHRENS3")
(:file "BEHRENS4")
(:file "BEHRENS5")
(:file "BEHRENS6")))
))))