aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
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