(defpackage :hello-system (:use :asdf :cl))
(in-package :hello-system)

(defsystem hello
  :name "hello"
  :author ""
  :version ""
  :maintainer ""
  :licence ""
  :description ""
  :long-description ""
  :components
  ((:file "packages")
   (:file "hello-world" :depends-on ("packages")))) ;hello-world.lisp は packages.lisp に依存