X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=Makefile;h=c78f5a8108ae8c9fc36ef26917761a5f79133502;hb=c326b0fa716c457ea7842d2f7c9c13eb3957f0bb;hp=473d031fb0203eeaee2f056acbfe805154ce459f;hpb=e650f6bc5f959a6430ba09f819bd4ee284ae2dfd;p=project%2Fluci.git diff --git a/Makefile b/Makefile index 473d031fb..c78f5a810 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,42 @@ include build/config.mk -MODULES = applications/* core modules/* themes/* +MODULES = applications/* libs/* modules/* themes/* i18n/* LUA_TARGET = source +### luaposix merge (temporary) ### +OS:=$(shell uname) +export OS +ifeq ($(OS),Darwin) + MODULES += contrib/luaposix +endif -.PHONY: all build clean host hostclean + +.PHONY: all build gccbuild luabuild clean host gcchost luahost hostcopy hostclean all: build -build: - for i in $(MODULES); do make -C$$i $(LUA_TARGET); done +build: luabuild gccbuild + +gccbuild: + for i in $(MODULES); do make -C$$i compile; done + +luabuild: + for i in $(MODULES); do make -C$$i lua$(LUA_TARGET); done clean: for i in $(MODULES); do make -C$$i clean; done -host: build - mkdir -p host/ffluci - for i in $(MODULES); do cp $$i/dist$(LUCI_INSTALLDIR) host/ -R 2>/dev/null || true; done + +host: build hostcopy + +gcchost: gccbuild hostcopy + +luahost: luabuild hostcopy + +hostcopy: + mkdir -p host + for i in $(MODULES); do cp $$i/dist/* host/ -R 2>/dev/null || true; done + ln -sf .$(LUCI_INSTALLDIR) host/luci -hostclean: - rm host -rf +hostclean: clean + rm -rf host