markov-algorithm.asd 576 B

12345678910111213141516171819
  1. ;;;; markov-algorithm.asd
  2. (asdf:defsystem #:markov-algorithm
  3. :description "A simple implementation of the Markov algoriths"
  4. :author "Stanislav Kondratyev <kondratjevsk@gmail.com>"
  5. :license "CC0"
  6. :version "0.0.1"
  7. :serial t
  8. :components ((:file "markov-algorithm")))
  9. (asdf:defsystem #:markov-algorithm/cli
  10. :description "A command line interface for the Markov algorithms"
  11. :author "Stanislav Kondratyev <kondratjevsk@gmail.com>"
  12. :license "CC0"
  13. :version "0.0.1"
  14. :depends-on (#:markov-algorithm)
  15. :serial t
  16. :components ((:file "markov-algorithm-cli")))