X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=Makefile;h=32ef02d4e5c043409120b01cd0d8a9b49c460e82;hp=2e986d8cbc5508d2ce5e71c782931401d30b7444;hb=32acc2cf98c07ea67c4e17860da7c4d536e32578;hpb=077db659bbcb7cee6bbc4c4dbaed9776261190a0 diff --git a/Makefile b/Makefile index 2e986d8cb..32ef02d4e 100644 --- a/Makefile +++ b/Makefile @@ -1,41 +1,22 @@ -LUAC = luac -LUAC_OPTIONS = -s +include build/config.mk -FILES = +MODULES = applications/* core modules/* themes/* +LUA_TARGET = source -CFILES = ffluci/util.lua ffluci/http.lua ffluci/fs.lua \ -ffluci/model/uci.lua ffluci/config.lua ffluci/i18n.lua \ -ffluci/template.lua ffluci/cbi.lua ffluci/dispatcher.lua \ -ffluci/menu.lua ffluci/init.lua ffluci/sys.lua -DIRECTORIES = dist/ffluci/model/cbi dist/ffluci/controller dist/ffluci/i18n dist/ffluci/view +.PHONY: all build clean host hostclean -INFILES = $(CFILES:%=src/%) -OUTFILE = ffluci/init.lua +all: build -.PHONY: all dist-compile dist-source examples-compile examples-source dist examples compile source clean +build: + for i in $(MODULES); do make -C$$i $(LUA_TARGET); done -all: compile - -dist-compile: compile dist -dist-source: source dist - -dist: - cp src/ffluci/controller/* dist/ffluci/controller/ -R - cp src/ffluci/i18n/* dist/ffluci/i18n/ - cp src/ffluci/view/* dist/ffluci/view/ -R - cp src/ffluci/model/cbi/* dist/ffluci/model/cbi/ -R - -compile: - mkdir -p $(DIRECTORIES) - $(LUAC) $(LUAC_OPTIONS) -o dist/$(OUTFILE) $(INFILES) - for i in $(CFILES); do [ -f dist/$$i ] || ln -s `dirname $$i | cut -s -d / -f 2- | sed -e 's/[^/]*\/*/..\//g'``basename $(OUTFILE)` dist/$$i; done - for i in $(FILES); do cp src/$$i dist/$$i; done +clean: + for i in $(MODULES); do make -C$$i clean; done -source: - mkdir -p $(DIRECTORIES) - for i in $(CFILES); do cp src/$$i dist/$$i; done - for i in $(FILES); do cp src/$$i dist/$$i; done +host: build + mkdir -p host/luci + for i in $(MODULES); do cp $$i/dist$(LUCI_INSTALLDIR) host/ -R 2>/dev/null || true; done -clean: - rm dist -rf +hostclean: clean + rm host -rf