From baa3404ab3e4c56b3583c91af58e554df2f42da2 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 5 Apr 2009 01:05:01 +0000 Subject: [PATCH] trunk: add gzip build target --- build/module.mk | 3 +++ contrib/package/luci/Makefile | 7 +++++++ 2 files changed, 10 insertions(+) diff --git a/build/module.mk b/build/module.mk index 8f3964ad6..93f52689c 100644 --- a/build/module.mk +++ b/build/module.mk @@ -37,6 +37,9 @@ luastrip: luasource luacompile: luasource for i in $$(find dist -name *.lua -not -name debug.lua); do $(LUAC) $(LUAC_OPTIONS) -o $$i $$i; done +luagzip: luacompile + for i in $$(find dist -name *.lua -not -name debug.lua); do gzip -9 $$i; done + luaclean: rm -rf dist diff --git a/contrib/package/luci/Makefile b/contrib/package/luci/Makefile index 044eca6ae..ec1a52a17 100644 --- a/contrib/package/luci/Makefile +++ b/contrib/package/luci/Makefile @@ -127,6 +127,9 @@ define Package/luci-core/config config PACKAGE_luci-core_source bool "Full Source" + config PACKAGE_luci-core_zipped + bool "Precompiled and compressed" + endchoice endef @@ -138,6 +141,10 @@ ifneq ($(CONFIG_PACKAGE_luci-core_stripped),) LUA_TARGET:=strip endif +ifneq ($(CONFIG_PACKAGE_luci-core_zipped),) + LUA_TARGET:=gzip +endif + ### Libraries ### define Package/luci-cbi -- 2.11.0