summaryrefslogtreecommitdiffhomepage
path: root/build/module.mk
blob: 9c17df18ce8302a578e7b1d668928c58bc557846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: all compile source clean

all: compile

source:
	mkdir -p dist$(LUCI_INSTALLDIR)
	cp root/* dist -R 2>/dev/null || true
	cp src/* dist$(LUCI_INSTALLDIR) -R 2>/dev/null || true
	for i in $$(find dist -name .svn); do rm $$i -rf; done  
	
compile: source
	for i in $$(find dist -name *.lua -not -name debug.lua); do $(LUAC) $(LUAC_OPTIONS) -o $$i $$i; done
	
clean:
	rm dist -rf