source: branches/acode-rewrite/source/cocoa-ide/hemlock/unused/archive/spell/spell.asd

Last change on this file was 6, checked in by Gary Byers, 21 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 646 bytes
Line 
1;;; -*- mode: lisp -*-
2(defpackage :spell-system (:use :cl :asdf))
3(in-package :spell-system)
4
5(defsystem spell
6 :version "0.4"
7 :components ((:file "package")
8 (:file "constants" :depends-on ("package"))
9 (:file "hashing" :depends-on ("package"))
10 (:file "flags")
11 (:file "classes" :depends-on ("package"))
12 (:file "build" :depends-on ("constants" "hashing"
13 "flags" "classes"))
14 ;; kind of a fake dependency
15 (:file "io" :depends-on ("build"))
16 (:file "correlate" :depends-on ("build"))))
Note: See TracBrowser for help on using the repository browser.