luci/build/module.mk
Steven Barth aa9ccf77c6 * Mördercommit ;-)
* Major Repository Reorganisation
* API 0.4 Softfreeze to come
2008-05-08 15:37:41 +00:00

15 lines
318 B
Makefile

.PHONY: all compile source clean
all: compile
source:
mkdir -p dist$(LUCI_INSTALLDIR)
cp root dist -R
cp src dist$(LUCI_INSTALLDIR) -R
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