bones.asd @ 7447809d31ad

More work on L0, a bit of cleanup
author Steve Losh <steve@stevelosh.com>
date Sat, 26 Mar 2016 20:40:23 +0000
parents fcec9e0c9c67
children 8a18f9b3bb72
(asdf:defsystem #:bones
  :name "bones"
  :description "A logic programming library for Common Lisp."

  :author "Steve Losh <steve@stevelosh.com>"
  :maintainer "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"
  :version "0.0.1"

  :depends-on (#:defstar
               #:optima
               #:trivial-types
               #:cl-arrows
               #:fare-quasiquote-optima
               #:fare-quasiquote-readtable)

  :serial t
  :components ((:file "src/utils") ; quickutils package ordering crap
               (:file "package")
               (:module "src"
                :components ((:file "paip")
                             (:module "wam"
                              :components ((:file "constants")
                                           (:file "topological-sort")
                                           (:file "cells")
                                           (:file "wam")
                                           (:file "instructions")
                                           (:file "dump")
                                           (:file "compile")))
                             (:file "bones")))))