aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: a9ce34d8510c40484f5f667868e3491a139fbc02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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