summaryrefslogtreecommitdiffhomepage
path: root/build/module.mk
blob: 52c0e52682d92c645cbcbb9ed8b951379687dac1 (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); do $(LUAC) $(LUAC_OPTIONS) -o $$i $$i; done
	
clean:
	rm dist -rf