-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial import of Lua-5.4.4 (and tests) from release tarballs.
Root dir: url: https://www.lua.org/ftp/lua-5.4.4.tar.gz sha1: 03c27684b9d5d9783fb79a7c836ba1cdc5f309cd `tests` dir: url: https://www.lua.org/tests/lua-5.4.4-tests.tar.gz sha256: 04d28355cd67a2299dfe5708b55a0ff221ccb1a3907a3113cc103ccc05ac6aad Lua has no official public repo, so we are having to do it this way. Although there is https://github.com/lua/lua, this repo doesn't contain all of the source code. For example `luac` (a useful tool for dumping Lua bytecode) is missing.
- Loading branch information
Showing
117 changed files
with
61,962 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
# Makefile for installing Lua | ||
# See doc/readme.html for installation and customization instructions. | ||
|
||
# == CHANGE THE SETTINGS BELOW TO SUIT YOUR ENVIRONMENT ======================= | ||
|
||
# Your platform. See PLATS for possible values. | ||
PLAT= guess | ||
|
||
# Where to install. The installation starts in the src and doc directories, | ||
# so take care if INSTALL_TOP is not an absolute path. See the local target. | ||
# You may want to make INSTALL_LMOD and INSTALL_CMOD consistent with | ||
# LUA_ROOT, LUA_LDIR, and LUA_CDIR in luaconf.h. | ||
INSTALL_TOP= /usr/local | ||
INSTALL_BIN= $(INSTALL_TOP)/bin | ||
INSTALL_INC= $(INSTALL_TOP)/include | ||
INSTALL_LIB= $(INSTALL_TOP)/lib | ||
INSTALL_MAN= $(INSTALL_TOP)/man/man1 | ||
INSTALL_LMOD= $(INSTALL_TOP)/share/lua/$V | ||
INSTALL_CMOD= $(INSTALL_TOP)/lib/lua/$V | ||
|
||
# How to install. If your install program does not support "-p", then | ||
# you may have to run ranlib on the installed liblua.a. | ||
INSTALL= install -p | ||
INSTALL_EXEC= $(INSTALL) -m 0755 | ||
INSTALL_DATA= $(INSTALL) -m 0644 | ||
# | ||
# If you don't have "install" you can use "cp" instead. | ||
# INSTALL= cp -p | ||
# INSTALL_EXEC= $(INSTALL) | ||
# INSTALL_DATA= $(INSTALL) | ||
|
||
# Other utilities. | ||
MKDIR= mkdir -p | ||
RM= rm -f | ||
|
||
# == END OF USER SETTINGS -- NO NEED TO CHANGE ANYTHING BELOW THIS LINE ======= | ||
|
||
# Convenience platforms targets. | ||
PLATS= guess aix bsd c89 freebsd generic linux linux-readline macosx mingw posix solaris | ||
|
||
# What to install. | ||
TO_BIN= lua luac | ||
TO_INC= lua.h luaconf.h lualib.h lauxlib.h lua.hpp | ||
TO_LIB= liblua.a | ||
TO_MAN= lua.1 luac.1 | ||
|
||
# Lua version and release. | ||
V= 5.4 | ||
R= $V.4 | ||
|
||
# Targets start here. | ||
all: $(PLAT) | ||
|
||
$(PLATS) help test clean: | ||
@cd src && $(MAKE) $@ | ||
|
||
install: dummy | ||
cd src && $(MKDIR) $(INSTALL_BIN) $(INSTALL_INC) $(INSTALL_LIB) $(INSTALL_MAN) $(INSTALL_LMOD) $(INSTALL_CMOD) | ||
cd src && $(INSTALL_EXEC) $(TO_BIN) $(INSTALL_BIN) | ||
cd src && $(INSTALL_DATA) $(TO_INC) $(INSTALL_INC) | ||
cd src && $(INSTALL_DATA) $(TO_LIB) $(INSTALL_LIB) | ||
cd doc && $(INSTALL_DATA) $(TO_MAN) $(INSTALL_MAN) | ||
|
||
uninstall: | ||
cd src && cd $(INSTALL_BIN) && $(RM) $(TO_BIN) | ||
cd src && cd $(INSTALL_INC) && $(RM) $(TO_INC) | ||
cd src && cd $(INSTALL_LIB) && $(RM) $(TO_LIB) | ||
cd doc && cd $(INSTALL_MAN) && $(RM) $(TO_MAN) | ||
|
||
local: | ||
$(MAKE) install INSTALL_TOP=../install | ||
|
||
# make may get confused with install/ if it does not support .PHONY. | ||
dummy: | ||
|
||
# Echo config parameters. | ||
echo: | ||
@cd src && $(MAKE) -s echo | ||
@echo "PLAT= $(PLAT)" | ||
@echo "V= $V" | ||
@echo "R= $R" | ||
@echo "TO_BIN= $(TO_BIN)" | ||
@echo "TO_INC= $(TO_INC)" | ||
@echo "TO_LIB= $(TO_LIB)" | ||
@echo "TO_MAN= $(TO_MAN)" | ||
@echo "INSTALL_TOP= $(INSTALL_TOP)" | ||
@echo "INSTALL_BIN= $(INSTALL_BIN)" | ||
@echo "INSTALL_INC= $(INSTALL_INC)" | ||
@echo "INSTALL_LIB= $(INSTALL_LIB)" | ||
@echo "INSTALL_MAN= $(INSTALL_MAN)" | ||
@echo "INSTALL_LMOD= $(INSTALL_LMOD)" | ||
@echo "INSTALL_CMOD= $(INSTALL_CMOD)" | ||
@echo "INSTALL_EXEC= $(INSTALL_EXEC)" | ||
@echo "INSTALL_DATA= $(INSTALL_DATA)" | ||
|
||
# Echo pkg-config data. | ||
pc: | ||
@echo "version=$R" | ||
@echo "prefix=$(INSTALL_TOP)" | ||
@echo "libdir=$(INSTALL_LIB)" | ||
@echo "includedir=$(INSTALL_INC)" | ||
|
||
# Targets that do not create files (not all makes understand .PHONY). | ||
.PHONY: all $(PLATS) help test clean install uninstall local dummy echo pc | ||
|
||
# (end of Makefile) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
This is Lua 5.4.4, released on 13 Jan 2022. | ||
|
||
For installation instructions, license details, and | ||
further information about Lua, see doc/readme.html. | ||
|
Oops, something went wrong.