< Common Lisp < External libraries < ASDF
Initialization
In order to be able to use ASDF you might call require first:
(require 'asdf)
Installing systems using ASDF-Install
In order to install cliki system using ASDF-Install execute following steps:
(require 'asdf)
(require 'asdf-install) ;; works on SBCL, may require more work on other lisps
(asdf-install:install 'cliki)
Loading systems
In order to load an already installed system call:
(asdf:oos 'asdf:load-op 'cliki)
Compiling and testing
In order to compile system sources call:
(asdf:oos 'asdf:compile-op 'cliki)
See also
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.