;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; This file is part of ICCLE2. ; ; ICCLE2 is free software: you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation, either version 3 of the License, or ; (at your option) any later version. ; ; ICCLE2 is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with ICCLE2. If not, see . ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defsystem "lisp101" :description "basic LISP tricks, application independent" :version "0.01" :author "The Mountain Lisp Gang and Tim Menzies (ed)" :licence "GPL3.0" :components ((:file "lisp101/deftest") ; must be first (:file "lisp101/structs") (:file "lisp101/strings") (:file "lisp101/hash") (:file "lisp101/list") (:file "lisp101/sh") (:file "lisp101/array") (:file "lisp101/random") (:file "lisp101/maths" :depends-on ("lisp101/random")) (:file "lisp101/any" :depends-on ("lisp101/random")) (:file "lisp101/reading") (:file "lisp101/lispfuns") (:file "lisp101/debug" :depends-on ("lisp101/lispfuns")) ) )