This code builds Lua 5.5 as a single file. This reduces the public symbols to
the official C API and gives the compiler more room for optimization.

The Makefile builds three files: the standalone interpreter lua, the compiler
luac, and liblua.o, which is the whole Lua library as a single object file
ready to be linked into your application.

Place this directory inside the src directory in the Lua distribution, which
you can get at
	https://www.lua.org/ftp/lua-5.5.0.tar.gz

Then do "make" with a suitable target:
	generic posix linux macos 32 c89

If you want to place this directory somewhere else, edit Makefile and change
the variable SRC to point to the src directory in the Lua distribution. You
can also give the value of SRC in the command line, as for instance in
	make SRC=/tmp/lua-5.5.0/src macos

These files are distributed under the Lua license:
	https://www.lua.org/license.html

