aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-10-01 10:50:00 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-10-01 10:50:00 +0200
commit412c497d49acbdb66a92e0a9db6c921e8169cfd2 (patch)
tree0eb3a2c429694d3afa07c5c4b0a134734ec5455f /Makefile
parent414c9302bdff7bd7900246240acd05666e2692e0 (diff)
downloadlanes-412c497d49acbdb66a92e0a9db6c921e8169cfd2.tar.gz
lanes-412c497d49acbdb66a92e0a9db6c921e8169cfd2.tar.bz2
lanes-412c497d49acbdb66a92e0a9db6c921e8169cfd2.zip
Makefile fixes for g++/mingw
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e81c12a..8b06e56 100644
--- a/Makefile
+++ b/Makefile
@@ -33,7 +33,7 @@ endif
33 33
34# Autodetect LUA 34# Autodetect LUA
35# 35#
36LUA=$(word 1,$(shell which lua5.1$(_LUAEXT)) $(shell which lua51$(_LUAEXT)) lua$(_LUAEXT) luajit$(_LUAEXT)) 36LUA=$(word 1,$(shell which lua5.1$(_LUAEXT)) $(shell which lua51$(_LUAEXT)) $(shell which lua$(_LUAEXT)) $(shell which luajit$(_LUAEXT)))
37 37
38_TARGET_SO=$(_TARGET_DIR)/core.$(_SO) 38_TARGET_SO=$(_TARGET_DIR)/core.$(_SO)
39 39