diff options
author | Pavel Labath <pavelo@centrum.sk> | 2011-05-16 10:58:21 (GMT) |
---|---|---|
committer | Paul Tagliamonte <paultag@fluxbox.org> | 2012-04-07 02:08:41 (GMT) |
commit | 0fa62fe1598c5b04925c0b7b98d0d00d28d10d88 (patch) | |
tree | ccc2dd040a03b294b17abaa4da55ca00ed9b82a7 /libs/lua/etc/README | |
parent | 7b6dc2ad72a4c4ecd20eddbfb6f1b4c3bd2a7024 (diff) | |
download | fluxbox_paul-0fa62fe1598c5b04925c0b7b98d0d00d28d10d88.zip fluxbox_paul-0fa62fe1598c5b04925c0b7b98d0d00d28d10d88.tar.bz2 |
Add lua as an internal library in libs/lua
Diffstat (limited to 'libs/lua/etc/README')
-rw-r--r-- | libs/lua/etc/README | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/libs/lua/etc/README b/libs/lua/etc/README new file mode 100644 index 0000000..5149fc9 --- /dev/null +++ b/libs/lua/etc/README | |||
@@ -0,0 +1,37 @@ | |||
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 | Run it from the toplevel as etc\luavs.bat. | ||
24 | |||
25 | min.c | ||
26 | A minimal Lua interpreter. | ||
27 | Good for learning and for starting your own. | ||
28 | Do "make min" for a demo. | ||
29 | |||
30 | noparser.c | ||
31 | Linking with noparser.o avoids loading the parsing modules in lualib.a. | ||
32 | Do "make noparser" for a demo. | ||
33 | |||
34 | strict.lua | ||
35 | Traps uses of undeclared global variables. | ||
36 | Do "make strict" for a demo. | ||
37 | |||