mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-11-08 14:28:21 +01:00
16 lines
224 B
Makefile
16 lines
224 B
Makefile
PLAT?= macosx
|
|
PLATS= macosx linux win32
|
|
|
|
#------
|
|
# Hopefully no need to change anything below this line
|
|
#
|
|
all: $(PLAT)
|
|
|
|
$(PLATS) none install local clean:
|
|
@cd src; $(MAKE) $@
|
|
|
|
test: dummy
|
|
lua test/hello.lua
|
|
|
|
.PHONY: dummy
|