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"))))