Add Licensing and Contributing
[clnl] / strictmath.asd
1 (asdf:defsystem strictmath
2  :name "Strict Math"
3  :version "0.1"
4  :maintainer "Frank Duncan (frank@kank.com)"
5  :author "Frank Duncan (frank@kank.com)"
6  :components ((:file "package")
7               (:file "base")
8               (:file "rem-pio2")
9               (:file "kcos")
10               (:file "ksin")
11               (:file "sin")
12               (:file "cos"))
13  :serial t
14  :depends-on (:ieee-floats))
15
16 (asdf:defsystem strictmath-test
17  :name "Strict Math Tests"
18  :maintainer "Frank Duncan (frank@kank.com)"
19  :author "Frank Duncan (frank@kank.com)"
20  :serial t
21  :components ((:file "package") (:file "main"))
22  :depends-on (:strictmath))