X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=Makefile;h=8d4c73b0053992eceebd43df0a1de10629da7545;hb=b515d6f88e8cbfe1b742d0a5cc99aa2d55b6c38e;hp=57b3efd629fe6f73fc2e281ca4aab581c3a5d485;hpb=9ba8d2aea994c832316f111354668f52de831043;p=project%2Fluci.git diff --git a/Makefile b/Makefile index 57b3efd62..8d4c73b00 100644 --- a/Makefile +++ b/Makefile @@ -1,42 +1,22 @@ -LUAC = luac -LUAC_OPTIONS = -s +include build/config.mk -FILES = ffluci/debug.lua +MODULES = applications/* core modules/* themes/* +LUA_TARGET = source -CFILES = ffluci/util.lua ffluci/http.lua ffluci/fs.lua \ -ffluci/sys.lua ffluci/model/uci.lua ffluci/model/ipkg.lua \ -ffluci/config.lua ffluci/i18n.lua ffluci/template.lua \ -ffluci/cbi.lua ffluci/dispatcher.lua ffluci/menu.lua ffluci/init.lua -DIRECTORIES = dist/ffluci/model/cbi dist/ffluci/model/menu 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 - cp src/ffluci/model/menu/* dist/ffluci/model/menu/ -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/ffluci + 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