summaryrefslogtreecommitdiffstats
path: root/tools/lua/Makefile
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-02-22 18:10:23 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-02-22 18:10:23 +0000
commit9cbba08f01e6cbe03b3c03dd14c16ade5c75fe7e (patch)
tree91b892df861afeed191347896d3130d59d41410f /tools/lua/Makefile
parent3d7b088997a372140d946c7e2ee9fdd3be9a0ee4 (diff)
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
Diffstat (limited to 'tools/lua/Makefile')
-rw-r--r--tools/lua/Makefile42
1 files changed, 0 insertions, 42 deletions
diff --git a/tools/lua/Makefile b/tools/lua/Makefile
deleted file mode 100644
index 13d06b107..000000000
--- a/tools/lua/Makefile
+++ /dev/null
@@ -1,42 +0,0 @@
-#
-# Copyright (C) 2006 OpenWrt.org
-#
-# This is free software, licensed under the GNU General Public License v2.
-# See /LICENSE for more information.
-#
-# $Id$
-
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=lua
-PKG_VERSION:=5.1.4
-
-PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
-PKG_SOURCE_URL:=http://www.lua.org/ftp/ \
- http://ftp.gwdg.de/pub/languages/lua/ \
- http://mirrors.dotsrc.org/lua/ \
- http://www.tecgraf.puc-rio.br/lua/ftp/
-PKG_MD5SUM:=d0870f2de55d59c1c8419f36e8fac150
-
-include $(INCLUDE_DIR)/host-build.mk
-
-define Host/Configure
-endef
-
-TARGET_CFLAGS += -DLUA_USE_LINUX
-
-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
-
-define Host/Clean
- $(MAKE) -C $(HOST_BUILD_DIR)/src clean
- rm -f $(HOST_BUILD_DIR)/src/luac-host
- $(call Host/Clean/Default)
-endef
-
-$(eval $(call HostBuild))