From aa9ccf77c6648515ba58c37b9345cdbd561028db Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Thu, 8 May 2008 15:37:41 +0000 Subject: * Mördercommit ;-) * Major Repository Reorganisation * API 0.4 Softfreeze to come MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/module.mk | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 build/module.mk (limited to 'build/module.mk') diff --git a/build/module.mk b/build/module.mk new file mode 100644 index 0000000000..286927436c --- /dev/null +++ b/build/module.mk @@ -0,0 +1,15 @@ +.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 \ No newline at end of file -- cgit v1.2.3