mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-11-08 14:28:21 +01:00
24 lines
332 B
Makefile
24 lines
332 B
Makefile
PLAT= none
|
|
PLATS= macosx linux
|
|
|
|
#------
|
|
# Hopefully no need to change anything below this line
|
|
#
|
|
all: $(PLAT)
|
|
|
|
none:
|
|
@echo "Please run"
|
|
@echo " make PLATFORM"
|
|
@echo "where PLATFORM is one of these:"
|
|
@echo " $(PLATS)"
|
|
|
|
$(PLATS) install local clean:
|
|
cd src; $(MAKE) $@
|
|
|
|
dummy:
|
|
|
|
test: dummy
|
|
lua test/hello.lua
|
|
|
|
.PHONY: dummy
|