Reverting recent changes that hard coded use of submodules.

This commit is contained in:
Bart House
2020-12-15 01:50:01 -08:00
parent 746c313aee
commit bad05e2fb4

View File

@@ -134,10 +134,7 @@ endif
#--------------------------------------------------------------- #---------------------------------------------------------------
# Location of LUA # Location of LUA
# #
# Using appropriate tag, source can be obtained from the git repository: # Original source needs to be obtained from:
# https://github.com/NetHack/NetHack.git
#
# Source for 5.4.2 could also be obtained from:
# http://www.lua.org/ftp/lua-5.4.2.tar.gz # http://www.lua.org/ftp/lua-5.4.2.tar.gz
# #
# This build assumes that the LUA sources are located # This build assumes that the LUA sources are located
@@ -157,11 +154,8 @@ endif
# #
# The source for the standalone interpreter (luac.c) is not kept with the # The source for the standalone interpreter (luac.c) is not kept with the
# rest of the LUA source. # rest of the LUA source.
#
# The source is kept at: # The source is kept at:
# https://github.com/lua/luac.git # https://github.com/lua/luac
#
# If building, copy luac.c into the directory LUATOP.
# #
# By default we will not build it. # By default we will not build it.
# #
@@ -447,7 +441,7 @@ OPTIONS_FILE = $(DAT)\options
ifndef LUAVER ifndef LUAVER
LUAVER = 5.4.2 LUAVER = 5.4.2
endif endif
LUASRC = $(LUATOP) LUASRC = $(LUATOP)/src
LUALIB = $(O)lua-$(LUAVER).static.a LUALIB = $(O)lua-$(LUAVER).static.a
LUADLL = $(O)lua-$(LUAVER).a LUADLL = $(O)lua-$(LUAVER).a
LUAINCL = -I$(LUASRC) LUAINCL = -I$(LUASRC)