Skip to content
Snippets Groups Projects
Commit 8f7c4b3e authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Merge branch 'master' of http://common-lisp.net/project/asdf/asdf

parents f2d34c3f 0120313f
No related branches found
No related tags found
No related merge requests found
...@@ -63,4 +63,11 @@ test-all: FORCE ...@@ -63,4 +63,11 @@ test-all: FORCE
sbcl --userinit /dev/null --sysinit /dev/null --load bin/make-helper.lisp \ sbcl --userinit /dev/null --sysinit /dev/null --load bin/make-helper.lisp \
--eval "(write-test-web-pages)" --eval "(quit)" --eval "(write-test-web-pages)" --eval "(quit)"
manual-html: asdf.texinfo
makeinfo --html asdf.texinfo
manual-info: asdf.texinfo
makeinfo asdf.texinfo
FORCE: FORCE:
...@@ -4,6 +4,24 @@ ...@@ -4,6 +4,24 @@
@settitle ASDF Manual @settitle ASDF Manual
@c %**end of header @c %**end of header
@c We use @&key, etc to escape & from TeX in lambda lists --
@c so we need to define them for info as well.
@macro &allow-other-keys
&allow-other-keys
@end macro
@macro &optional
&optional
@end macro
@macro &rest
&rest
@end macro
@macro &key
&key
@end macro
@macro &body
&body
@end macro
@c for install-info @c for install-info
@dircategory Software development @dircategory Software development
@direntry @direntry
...@@ -1013,8 +1031,8 @@ and easier than having them all be @code{EQL} methods. ...@@ -1013,8 +1031,8 @@ and easier than having them all be @code{EQL} methods.
Operations are invoked on systems via @code{operate}. Operations are invoked on systems via @code{operate}.
@anchor{operate} @anchor{operate}
@deffn {Generic function} @code{operate} @var{operation} @var{system} @code{&rest} @var{initargs} @deffn {Generic function} @code{operate} @var{operation} @var{system} @&rest @var{initargs}
@deffnx {Generic function} @code{oos} @var{operation} @var{system} @code{&rest} @var{initargs} @deffnx {Generic function} @code{oos} @var{operation} @var{system} @&rest @var{initargs}
@code{operate} invokes @var{operation} on @var{system}. @code{operate} invokes @var{operation} on @var{system}.
@code{oos} is a synonym for @code{operate}. @code{oos} is a synonym for @code{operate}.
...@@ -1047,7 +1065,7 @@ They are invoked via the @code{operate} generic function. ...@@ -1047,7 +1065,7 @@ They are invoked via the @code{operate} generic function.
(asdf:operate 'asdf:@var{operation-name} :@var{system-name} @{@var{operation-options ...}@}) (asdf:operate 'asdf:@var{operation-name} :@var{system-name} @{@var{operation-options ...}@})
@end lisp @end lisp
@deffn Operation @code{compile-op} @code{&key} @code{proclamations} @deffn Operation @code{compile-op} @&key @code{proclamations}
This operation compiles the specified component. This operation compiles the specified component.
If proclamations are supplied, they will be proclaimed. If proclamations are supplied, they will be proclaimed.
...@@ -1064,7 +1082,7 @@ does not necessarily load all the parts of the system, though; ...@@ -1064,7 +1082,7 @@ does not necessarily load all the parts of the system, though;
use @code{load-op} to load a system. use @code{load-op} to load a system.
@end deffn @end deffn
@deffn Operation @code{load-op} @code{&key} @code{proclamations} @deffn Operation @code{load-op} @&key @code{proclamations}
This operation loads a system. This operation loads a system.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment