aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile20
1 files changed, 15 insertions, 5 deletions
diff --git a/makefile b/makefile
index 8e9e967..934485b 100644
--- a/makefile
+++ b/makefile
@@ -1,13 +1,23 @@
1PLAT?= macosx 1# luasocket makefile
2#
3# see src/makefile for description of how to customize the build
4#
5# Targets:
6# install install system independent support
7# install-unix also install unix-only support
8# install-both install both lua5.1 and lua5.2 socket support
9# print print the build settings
10
11PLAT?= linux
2PLATS= macosx linux win32 12PLATS= macosx linux win32
3 13
4#------
5# Hopefully no need to change anything below this line
6#
7all: $(PLAT) 14all: $(PLAT)
8 15
9$(PLATS) none install install-unix local clean: 16$(PLATS) none install install-unix local clean:
10 @cd src; $(MAKE) $@ 17 $(MAKE) -C src $@
18
19print:
20 $(MAKE) -C src $@
11 21
12test: 22test:
13 lua test/hello.lua 23 lua test/hello.lua