tdcb.asd @ 716d1110c12f

Initial Huffman skeleton
author Steve Losh <steve@stevelosh.com>
date Sat, 25 Jul 2020 15:48:24 -0400
parents a3237e7f8fc8
children (none)
(asdf:defsystem :tdcb
  :description "The Data Compression Book in Common Lisp"
  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT"

  :depends-on (:adopt
               :alexandria
               :losh
               :iterate
               :flexi-streams
               :pileup)

  :serial t
  :components ((:module "src" :serial t
                :components ((:file "package")
                             (:file "utilities")
                             (:file "bits")
                             (:file "main")
                             (:file "huffman")))))