[funds-cvs] r5 - trunk/funds/src
abaine at common-lisp.net
abaine at common-lisp.net
Mon Jun 11 03:10:18 UTC 2007
Author: abaine
Date: Sun Jun 10 23:10:17 2007
New Revision: 5
Modified:
trunk/funds/src/funds.asd
Log:
Added defsystem form
Modified: trunk/funds/src/funds.asd
==============================================================================
--- trunk/funds/src/funds.asd (original)
+++ trunk/funds/src/funds.asd Sun Jun 10 23:10:17 2007
@@ -0,0 +1,13 @@
+
+;;;; -*- Lisp -*-
+
+(defpackage #:funds-asd
+ (:use :cl :asdf))
+
+(in-package :funds-asd)
+
+(defsystem funds
+ :components ((:file "package")
+ (:module trees
+ :components ((:file "avl-tree"))
+ :depends-on ("package"))))
More information about the Funds-cvs
mailing list