aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: 42754743e469a8ad9fb45fd639431cb05f8a3d31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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