summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/luaossl.tex12
1 files changed, 9 insertions, 3 deletions
diff --git a/doc/luaossl.tex b/doc/luaossl.tex
index 3d33422..0aac6c3 100644
--- a/doc/luaossl.tex
+++ b/doc/luaossl.tex
@@ -141,7 +141,7 @@ The Makefile requires GNU Make, usually installed as gmake on platforms other th
141 141
142\chapter{Installation} 142\chapter{Installation}
143 143
144All the C modules are built into a single core C library. The core routines are then wrapped and extended through Lua modules. Because there several extant versions of Lua often used in parallel on the same system, there are individual targets to build and install for each supported Lua version. The targets \texttt{all} and \texttt{install} will attempt to build and install all supported versions. 144All the C modules are built into a single core C library. The core routines are then wrapped and extended through Lua modules. Because there several extant versions of Lua often used in parallel on the same system, there are individual targets to build and install for each supported Lua version. The targets \texttt{all} and \texttt{install} will attempt to build and install both Lua 5.1 and 5.2 modules.
145 145
146Note that building and installation and can accomplished in a single step by simply invoking one of the install targets with all the necessary variables defined. 146Note that building and installation and can accomplished in a single step by simply invoking one of the install targets with all the necessary variables defined.
147 147
@@ -155,7 +155,7 @@ All the common GNU-style compiler variables are supported, including \texttt{CC}
155 155
156\begin{description} 156\begin{description}
157\item[\texttt{all}] \hfill \\ 157\item[\texttt{all}] \hfill \\
158Build modules for Lua 5.1, 5.2, and 5.3. 158Build modules for Lua 5.1 and 5.2.
159 159
160\item[\texttt{all5.1}] \hfill \\ 160\item[\texttt{all5.1}] \hfill \\
161Build Lua 5.1 module. 161Build Lua 5.1 module.
@@ -186,6 +186,12 @@ Install path for Lua 5.2 modules, e.g. \texttt{\$(prefix)/share/lua/5.2}
186\item[\texttt{lua52cpath}] \hfill \\ 186\item[\texttt{lua52cpath}] \hfill \\
187Install path for Lua 5.2 C modules, e.g. \texttt{\$(prefix)/lib/lua/5.2} 187Install path for Lua 5.2 C modules, e.g. \texttt{\$(prefix)/lib/lua/5.2}
188 188
189\item[\texttt{lua53path}] \hfill \\
190Install path for Lua 5.3 modules, e.g. \texttt{\$(prefix)/share/lua/5.3}
191
192\item[\texttt{lua53cpath}] \hfill \\
193Install path for Lua 5.3 C modules, e.g. \texttt{\$(prefix)/lib/lua/5.3}
194
189\end{description} 195\end{description}
190 196
191\subsection{Targets} 197\subsection{Targets}
@@ -193,7 +199,7 @@ Install path for Lua 5.2 C modules, e.g. \texttt{\$(prefix)/lib/lua/5.2}
193\begin{description} 199\begin{description}
194 200
195\item[\texttt{install}] \hfill \\ 201\item[\texttt{install}] \hfill \\
196Install modules for Lua 5.1, 5.2, and 5.3. 202Install modules for Lua 5.1 and 5.2.
197 203
198\item[\texttt{install5.1}] \hfill \\ 204\item[\texttt{install5.1}] \hfill \\
199Install Lua 5.1 module. 205Install Lua 5.1 module.