
The complete code for the Hello World defsystem (the defsys.lisp file) is:
(in-package "CL-USER") (require "corba-orb")(defsystem hello-world-corba-object ()
:members (
("hello-world" :type :idl-file)"shared"
"hello-world-server"
"hello-world-client"
)
:rules ((:in-order-to :compile :all
(:requires (:load :previous)))))