(defsystem "lspack" :author "Emre Akan" :description "Quickstart Common Lisp projects" :license "GPL-3.0" :version "0.0.6" :depends-on ("uiop") :pathname "src/" :serial t :components ((:file "package") (:file "util") (:file "license") (:file "starter"))) (defsystem "lspack/exe" :depends-on ("lspack") :build-operation program-op :build-pathname "lspack" :entry-point "lspack/exe:main" :components ((:file "src/main")))