1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
\input texinfo.tex @c -*- texinfo -*-
@c %**start of header (This is for running Texinfo on a region.)
@setfilename lightning.info
@set TITLE Using and porting @sc{gnu} @i{lightning}
@set TOPIC installing, using and porting
@set BOTH
@set USING
@set PORTING
@settitle @value{TITLE}
@c ---------------------------------------------------------------------
@c Common macros
@c ---------------------------------------------------------------------
@macro bulletize{a}
@item
\a\
@end macro
@macro rem{a}
@r{@i{\a\}}
@end macro
@macro gnu{}
@sc{gnu}
@end macro
@macro lightning{}
@gnu{} @i{lightning}
@end macro
@c ---------------------------------------------------------------------
@c Macros for Texinfo 3.1/4.0 compatibility
@c ---------------------------------------------------------------------
@c @hlink (macro), @url and @email are used instead of @uref for Texinfo 3.1
@c compatibility
@macro hlink{url, link}
\link\ (\url\)
@end macro
@c ifhtml can only be true in Texinfo 4.0, which has uref
@ifhtml
@unmacro hlink
@macro hlink{url, link}
@uref{\url\, \link\}
@end macro
@macro email{mail}
@uref{mailto:\mail\, , \mail\}
@end macro
@macro url{url}
@uref{\url\}
@end macro
@end ifhtml
@c ---------------------------------------------------------------------
@c References to the other half of the manual
@c ---------------------------------------------------------------------
@ifset USING
@macro usingref{node, name}
@ref{\node\, , \name\}
@end macro
@end ifset
@ifclear USING
@macro usingref{node, name}
@ref{\node\, , \name\, u-lightning, Using @sc{gnu} @i{lightning}}
@end macro
@end ifclear
@ifset PORTING
@macro portingref{node, name}
@ref{\node\, , \name\}
@end macro
@end ifset
@ifclear PORTING
@macro portingref{node, name}
@ref{\node\, , \name\, p-lightning, Porting @sc{gnu} @i{lightning}}
@end macro
@end ifclear
@c ---------------------------------------------------------------------
@c End of macro section
@c ---------------------------------------------------------------------
@include version.texi
@include body.texi
@c %**end of header (This is for running Texinfo on a region.)
@c ***********************************************************************
|