aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorCaleb Maclennan <caleb@alerque.com>2026-08-31 18:21:20 +0300
committerGitHub <noreply@github.com>2026-08-31 17:21:20 +0200
commitfa9b35a0cf11bc856cbd8bffbef5ad6fb3e62a93 (patch)
treeee7bde0e0d61fc837e426b7f49199a807b6b08aa /makefile
parenteb47ded0023257b1b5b29314dd1b584e44455a01 (diff)
downloadluasocket-fa9b35a0cf11bc856cbd8bffbef5ad6fb3e62a93.tar.gz
luasocket-fa9b35a0cf11bc856cbd8bffbef5ad6fb3e62a93.tar.bz2
luasocket-fa9b35a0cf11bc856cbd8bffbef5ad6fb3e62a93.zip
Add Lua 5.5 support (#473)
Diffstat (limited to 'makefile')
-rw-r--r--makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/makefile b/makefile
index 227ad70..f7a5859 100644
--- a/makefile
+++ b/makefile
@@ -5,7 +5,7 @@
5# Targets: 5# Targets:
6# install install system independent support 6# install install system independent support
7# install-unix also install unix-only support 7# install-unix also install unix-only support
8# install-both install for lua51 lua52 lua53 8# install-both install for lua51 lua52 lua53 lua54 lua55
9# install-both-unix also install unix-only 9# install-both-unix also install unix-only
10# print print the build settings 10# print print the build settings
11 11
@@ -36,6 +36,9 @@ install-both:
36 $(MAKE) clean 36 $(MAKE) clean
37 @cd src; $(MAKE) $(PLAT) LUAV=5.4 37 @cd src; $(MAKE) $(PLAT) LUAV=5.4
38 @cd src; $(MAKE) install LUAV=5.4 38 @cd src; $(MAKE) install LUAV=5.4
39 $(MAKE) clean
40 @cd src; $(MAKE) $(PLAT) LUAV=5.5
41 @cd src; $(MAKE) install LUAV=5.5
39 42
40install-both-unix: 43install-both-unix:
41 $(MAKE) clean 44 $(MAKE) clean
@@ -50,6 +53,9 @@ install-both-unix:
50 $(MAKE) clean 53 $(MAKE) clean
51 @cd src; $(MAKE) $(PLAT) LUAV=5.4 54 @cd src; $(MAKE) $(PLAT) LUAV=5.4
52 @cd src; $(MAKE) install-unix LUAV=5.4 55 @cd src; $(MAKE) install-unix LUAV=5.4
56 $(MAKE) clean
57 @cd src; $(MAKE) $(PLAT) LUAV=5.5
58 @cd src; $(MAKE) install-unix LUAV=5.5
53 59
54.PHONY: test 60.PHONY: test
55 61