2009-05-27 11:31:38 +02:00
|
|
|
PLAT= none
|
|
|
|
PLATS= macosx linux
|
2005-08-12 07:56:32 +02:00
|
|
|
|
|
|
|
#------
|
|
|
|
# Hopefully no need to change anything below this line
|
|
|
|
#
|
2009-05-27 11:31:38 +02:00
|
|
|
all: $(PLAT)
|
2005-08-12 07:56:32 +02:00
|
|
|
|
2009-05-27 11:31:38 +02:00
|
|
|
none:
|
|
|
|
@echo "Please run"
|
|
|
|
@echo " make PLATFORM"
|
|
|
|
@echo "where PLATFORM is one of these:"
|
|
|
|
@echo " $(PLATS)"
|
2005-08-12 07:56:32 +02:00
|
|
|
|
2009-05-27 11:31:38 +02:00
|
|
|
$(PLATS) install local clean:
|
|
|
|
cd src; $(MAKE) $@
|
2005-08-12 07:56:32 +02:00
|
|
|
|
2009-05-27 11:31:38 +02:00
|
|
|
dummy:
|
2005-11-22 09:33:29 +01:00
|
|
|
|
2009-05-27 11:31:38 +02:00
|
|
|
test: dummy
|
|
|
|
lua test/hello.lua
|
2005-08-12 07:56:32 +02:00
|
|
|
|
2009-05-27 11:31:38 +02:00
|
|
|
.PHONY: dummy
|