summaryrefslogtreecommitdiff
path: root/package/lua
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-02-22 18:10:23 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-02-22 18:10:23 +0000
commit25d318e815d06a829354f84d0d8e4e206473123c (patch)
tree1e728b5c0c7fbbe2f073c2cd58e791a5ce3ba39e /package/lua
parentaa0778f77efb1d5c0d49e66a9d52ff438bc1ba7d (diff)
downloadmtk-20170518-25d318e815d06a829354f84d0d8e4e206473123c.zip
mtk-20170518-25d318e815d06a829354f84d0d8e4e206473123c.tar.gz
mtk-20170518-25d318e815d06a829354f84d0d8e4e206473123c.tar.bz2
merge host build of lua from tools/ into package/lua/Makefile
SVN-Revision: 14622
Diffstat (limited to 'package/lua')
-rw-r--r--package/lua/Makefile18
1 files changed, 17 insertions, 1 deletions
diff --git a/package/lua/Makefile b/package/lua/Makefile
index eff3139..0c2e8e2 100644
--- a/package/lua/Makefile
+++ b/package/lua/Makefile
@@ -19,6 +19,7 @@ PKG_SOURCE_URL:=http://www.lua.org/ftp/ \
http://www.tecgraf.puc-rio.br/lua/ftp/
PKG_MD5SUM:=d0870f2de55d59c1c8419f36e8fac150
+include $(INCLUDE_DIR)/host-build.mk
include $(INCLUDE_DIR)/package.mk
define Package/lua/Default
@@ -81,9 +82,21 @@ $(call Package/lua/Default/description)
This package contains LUA language examples.
endef
-define Build/Configure
+# Host build
+define Host/Configure
+
+endef
+
+define Host/Compile
+ $(MAKE) -C $(HOST_BUILD_DIR)/src luac-host
endef
+define Host/Install
+ $(INSTALL_BIN) $(HOST_BUILD_DIR)/src/luac-host $(STAGING_DIR_HOST)/bin/luac
+endef
+
+# Target build
+
TARGET_CFLAGS += -DLUA_USE_LINUX $(FPIC)
ifneq ($(CONFIG_USE_EGLIBC),)
@@ -92,6 +105,8 @@ ifneq ($(CONFIG_USE_EGLIBC),)
endif
endif
+Build/Configure=$(Host/Configure)
+
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
CC="$(TARGET_CROSS)gcc" \
@@ -140,6 +155,7 @@ define Package/lua-examples/install
$(1)/usr/share/lua/examples/
endef
+$(eval $(call HostBuild))
$(eval $(call BuildPackage,liblua))
$(eval $(call BuildPackage,lua))
$(eval $(call BuildPackage,luac))