diff options
author | Caleb Maclennan <caleb@alerque.com> | 2023-11-10 09:12:04 +0300 |
---|---|---|
committer | Caleb Maclennan <caleb@alerque.com> | 2023-11-10 09:12:04 +0300 |
commit | 5c4fc93d5f4137bf4c22ddf1a048c907a4a26727 (patch) | |
tree | a9a68e1f6a9c3bfe2b64fa1c3a4098865b7d3b5d /makefile | |
parent | ccef3bc4e2aa6ee5b997a80aabb58f4ff0b0e98f (diff) | |
parent | 43a97b7f0053313b43906371dbdc226271e6c8ab (diff) | |
download | luasocket-hjelmeland-patch-1.tar.gz luasocket-hjelmeland-patch-1.tar.bz2 luasocket-hjelmeland-patch-1.zip |
Merge branch 'master' into hjelmeland-patch-1hjelmeland-patch-1
Diffstat (limited to 'makefile')
-rwxr-xr-x[-rw-r--r--] | makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -10,7 +10,7 @@ | |||
10 | # print print the build settings | 10 | # print print the build settings |
11 | 11 | ||
12 | PLAT?= linux | 12 | PLAT?= linux |
13 | PLATS= macosx linux win32 mingw freebsd | 13 | PLATS= macosx linux win32 win64 mingw freebsd solaris |
14 | 14 | ||
15 | all: $(PLAT) | 15 | all: $(PLAT) |
16 | 16 | ||
@@ -33,6 +33,9 @@ install-both: | |||
33 | $(MAKE) clean | 33 | $(MAKE) clean |
34 | @cd src; $(MAKE) $(PLAT) LUAV=5.3 | 34 | @cd src; $(MAKE) $(PLAT) LUAV=5.3 |
35 | @cd src; $(MAKE) install LUAV=5.3 | 35 | @cd src; $(MAKE) install LUAV=5.3 |
36 | $(MAKE) clean | ||
37 | @cd src; $(MAKE) $(PLAT) LUAV=5.4 | ||
38 | @cd src; $(MAKE) install LUAV=5.4 | ||
36 | 39 | ||
37 | install-both-unix: | 40 | install-both-unix: |
38 | $(MAKE) clean | 41 | $(MAKE) clean |
@@ -44,6 +47,9 @@ install-both-unix: | |||
44 | $(MAKE) clean | 47 | $(MAKE) clean |
45 | @cd src; $(MAKE) $(PLAT) LUAV=5.3 | 48 | @cd src; $(MAKE) $(PLAT) LUAV=5.3 |
46 | @cd src; $(MAKE) install-unix LUAV=5.3 | 49 | @cd src; $(MAKE) install-unix LUAV=5.3 |
50 | $(MAKE) clean | ||
51 | @cd src; $(MAKE) $(PLAT) LUAV=5.4 | ||
52 | @cd src; $(MAKE) install-unix LUAV=5.4 | ||
47 | 53 | ||
48 | .PHONY: test | 54 | .PHONY: test |
49 | 55 | ||