diff options
Diffstat (limited to 'build/module.mk')
-rw-r--r-- | build/module.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/module.mk b/build/module.mk index 286927436..45732a434 100644 --- a/build/module.mk +++ b/build/module.mk @@ -4,12 +4,12 @@ all: compile source: mkdir -p dist$(LUCI_INSTALLDIR) - cp root dist -R - cp src dist$(LUCI_INSTALLDIR) -R + 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 + rm dist -rf |