LispWorks User Guide and Reference Manual > 16 Common Defsystem

NextPrevUpTopContentsIndex

16.2 Defining a system

A system is defined with a defsystem form in an ordinary Lisp source file. This form must be loaded into the Lisp image in order to define the system in the environment. Once loaded, operations can be carried out on the system by invoking Lisp functions, or, more conveniently, by using the system browser.

For example, the expression:

CL-USER 5 > (compile-system 'debug-app :force t)

would compile every file in a system called debug-app .

Note: When defining a hierarchy of systems, the leaf systems must be defined first -- that is, a system must be declared before any systems that include it.

By convention, system definitions are placed in a file called defsys.lisp which usually resides in the same directory as the members of the system.

The full syntax of defsystem is given in defsystem. Below is a brief introduction.

16.2.1 DEFSYSTEM syntax

16.2.2 DEFSYSTEM options

16.2.3 DEFSYSTEM members

16.2.4 DEFSYSTEM rules

16.2.5 Examples


LispWorks User Guide and Reference Manual - 22 Dec 2009

NextPrevUpTopContentsIndex