| 3 |
tristanc |
1 |
This directory contains some useful files and code.
|
|
|
2 |
Unlike the code in ../src, everything here is in the public domain.
|
|
|
3 |
|
|
|
4 |
If any of the makes fail, you're probably not using the same libraries
|
|
|
5 |
used to build Lua. Set MYLIBS in Makefile accordingly.
|
|
|
6 |
|
|
|
7 |
all.c
|
|
|
8 |
Full Lua interpreter in a single file.
|
|
|
9 |
Do "make one" for a demo.
|
|
|
10 |
|
|
|
11 |
lua.hpp
|
|
|
12 |
Lua header files for C++ using 'extern "C"'.
|
|
|
13 |
|
|
|
14 |
lua.ico
|
|
|
15 |
A Lua icon for Windows (and web sites: save as favicon.ico).
|
|
|
16 |
Drawn by hand by Markus Gritsch <gritsch@iue.tuwien.ac.at>.
|
|
|
17 |
|
|
|
18 |
lua.pc
|
|
|
19 |
pkg-config data for Lua
|
|
|
20 |
|
|
|
21 |
luavs.bat
|
|
|
22 |
Script to build Lua under "Visual Studio .NET Command Prompt".
|
|
|
23 |
|
|
|
24 |
min.c
|
|
|
25 |
A minimal Lua interpreter.
|
|
|
26 |
Good for learning and for starting your own.
|
|
|
27 |
Do "make min" for a demo.
|
|
|
28 |
|
|
|
29 |
noparser.c
|
|
|
30 |
Linking with noparser.o avoids loading the parsing modules in lualib.a.
|
|
|
31 |
Do "make noparser" for a demo.
|
|
|
32 |
|
|
|
33 |
strict.lua
|
|
|
34 |
Traps uses of undeclared global variables.
|
|
|
35 |
Do "make strict" for a demo.
|
|
|
36 |
|