diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2011-05-25 20:57:22 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2011-05-25 20:57:22 +0000 |
commit | 3a8ba90dfb0c2eb224f317dd692ede426691e72a (patch) | |
tree | fe1cc5379a2e0e031663fe9c15d908653844bc73 /makefile | |
parent | bce60be30fe8e9c1b0eb33128c23c93d7bca5303 (diff) | |
download | luasocket-3a8ba90dfb0c2eb224f317dd692ede426691e72a.tar.gz luasocket-3a8ba90dfb0c2eb224f317dd692ede426691e72a.tar.bz2 luasocket-3a8ba90dfb0c2eb224f317dd692ede426691e72a.zip |
Saving before big changes to support IPv6.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 16 |
1 files changed, 4 insertions, 12 deletions
@@ -1,21 +1,13 @@ | |||
1 | PLAT= none | 1 | PLAT?= macosx |
2 | PLATS= macosx linux | 2 | PLATS= macosx linux win32 |
3 | 3 | ||
4 | #------ | 4 | #------ |
5 | # Hopefully no need to change anything below this line | 5 | # Hopefully no need to change anything below this line |
6 | # | 6 | # |
7 | all: $(PLAT) | 7 | all: $(PLAT) |
8 | 8 | ||
9 | none: | 9 | $(PLATS) none install local clean: |
10 | @echo "Please run" | 10 | @cd src; $(MAKE) $@ |
11 | @echo " make PLATFORM" | ||
12 | @echo "where PLATFORM is one of these:" | ||
13 | @echo " $(PLATS)" | ||
14 | |||
15 | $(PLATS) install local clean: | ||
16 | cd src; $(MAKE) $@ | ||
17 | |||
18 | dummy: | ||
19 | 11 | ||
20 | test: dummy | 12 | test: dummy |
21 | lua test/hello.lua | 13 | lua test/hello.lua |