;; Antik system definition ;; Liam Healy 2010-12-24 09:43:28EST antik.asd ;; Time-stamp: <2013-11-23 11:14:56EST antik-base.asd> ;; Copyright 2011, 2012, 2013 Liam M. Healy ;; Distributed under the terms of the GNU General Public License ;; ;; This program 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. ;; ;; This program 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 this program. If not, see . ;;; Antik is a system for doing scientific, engineering, and computational mathematics. (asdf:defsystem #:antik-base :name "Antik" :description "Basic definitions providing a foundation for computational mathematics, science, and engineering." :author "Liam M. Healy" :license "GPL v3" :serial t :defsystem-depends-on (#:asdf-system-connections) :depends-on (#:iterate #:alexandria) :components ((:module init :serial t :components ((:file "package") (:file "utility") (:file "conditions") (:file "object") (:file "iterate") (:file "intermediate") ; temporary (:file "generic"))))) (asdf:defsystem-connection #:antik-tests :serial t :requires (#:antik-base #:lisp-unit) :components ((:module tests :components ((:file "numbers")))))