-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathele-postmodern.asd
31 lines (29 loc) · 1.03 KB
/
ele-postmodern.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
;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;
;;; Elephant users are granted the rights to distribute and use this software
;;; as governed by the terms of the Lisp Lesser GNU Public License
;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
(defsystem ele-postmodern
:name "ele-postmodern"
:author "Henrik Hjelte <hhjelte@common-lisp.net>"
:version "0.6.0"
:licence "LLGPL"
:description "Elephant postmodern postgresql backend"
:components
((:module :src
:components
((:module :db-postmodern
:components
((:file "package")
(:file "pm-sql")
(:file "pm-controller")
(:file "pm-btree")
(:file "pm-cache")
(:file "pm-transaction")
(:file "pm-cursor")
(:file "pm-btree-index")
(:file "pm-indexed-btree")
(:file "pm-secondary"))
:serial t))))
:depends-on (:postmodern
:elephant))