diff options
author | unknown <diego.nehab@gmail.com> | 2013-05-25 18:07:38 +0800 |
---|---|---|
committer | unknown <diego.nehab@gmail.com> | 2013-05-25 18:07:38 +0800 |
commit | bb0b31301a43e740f30cf438f9f2b3e68fbd7698 (patch) | |
tree | 59204faeb58c5b7e9e874c3504fd3fead0ef7219 /makefile | |
parent | cbc77440c8d84487ed652ee65551df0f8592a53f (diff) | |
download | luasocket-bb0b31301a43e740f30cf438f9f2b3e68fbd7698.tar.gz luasocket-bb0b31301a43e740f30cf438f9f2b3e68fbd7698.tar.bz2 luasocket-bb0b31301a43e740f30cf438f9f2b3e68fbd7698.zip |
Add MingW support.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 19 |
1 files changed, 14 insertions, 5 deletions
@@ -3,13 +3,14 @@ | |||
3 | # see src/makefile for description of how to customize the build | 3 | # see src/makefile for description of how to customize the build |
4 | # | 4 | # |
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 both lua5.1 and lua5.2 socket support | 8 | # install-both install for both lua5.1 and lua5.2 |
9 | # print print the build settings | 9 | # install-both-unix also install unix-only |
10 | # print print the build settings | ||
10 | 11 | ||
11 | PLAT?= linux | 12 | PLAT?= linux |
12 | PLATS= macosx linux win32 | 13 | PLATS= macosx linux win32 mingw |
13 | 14 | ||
14 | all: $(PLAT) | 15 | all: $(PLAT) |
15 | 16 | ||
@@ -25,6 +26,14 @@ test: | |||
25 | install-both: | 26 | install-both: |
26 | $(MAKE) clean | 27 | $(MAKE) clean |
27 | @cd src; $(MAKE) $(PLAT) LUAV=5.1 | 28 | @cd src; $(MAKE) $(PLAT) LUAV=5.1 |
29 | @cd src; $(MAKE) install LUAV=5.1 | ||
30 | $(MAKE) clean | ||
31 | @cd src; $(MAKE) $(PLAT) LUAV=5.2 | ||
32 | @cd src; $(MAKE) install LUAV=5.2 | ||
33 | |||
34 | install-both-unix: | ||
35 | $(MAKE) clean | ||
36 | @cd src; $(MAKE) $(PLAT) LUAV=5.1 | ||
28 | @cd src; $(MAKE) install-unix LUAV=5.1 | 37 | @cd src; $(MAKE) install-unix LUAV=5.1 |
29 | $(MAKE) clean | 38 | $(MAKE) clean |
30 | @cd src; $(MAKE) $(PLAT) LUAV=5.2 | 39 | @cd src; $(MAKE) $(PLAT) LUAV=5.2 |