norvig / paip-lisp

Lisp code for the textbook "Paradigms of Artificial Intelligence Programming"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

asdf definition for paip in paip.asd : serial option should move to the module definition

lispm opened this issue · comments

the :serial t option should be in the module definition:

(asdf:defsystem "paip"
  :default-component-class paip-source-file
  :version "0.1"
  :author "Peter Norvig"
  :license "MIT"
  :components ((:module "lisp"
                :serial t
                :components
                ((:file "auxfns")
                 (:file "tutor")
                 (:file "examples"))))
  :description "Lisp code for the textbook \"Paradigms of Artificial Intelligence Programming\"")