1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

merge host build of lua from tools/ into package/lua/Makefile

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14622 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2009-02-22 18:10:23 +00:00
parent 3d7b088997
commit 9cbba08f01
10 changed files with 18 additions and 4469 deletions

View File

@@ -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))