diff options
author | wigyori <wigyori@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-06-26 10:15:29 +0000 |
---|---|---|
committer | wigyori <wigyori@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-06-26 10:15:29 +0000 |
commit | 35c117fbe5ab75a5258dc6de414bbcc024d2df05 (patch) | |
tree | 3a65223b0267ec7c5c52632dedba33635b8dd527 /tools/elftosb/Makefile | |
parent | 744c1e986522143c0eb4efae9f4f45a7f1877c38 (diff) |
tools: add tools for i.MX23 boards
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37035 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/elftosb/Makefile')
-rw-r--r-- | tools/elftosb/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tools/elftosb/Makefile b/tools/elftosb/Makefile new file mode 100644 index 0000000000..c063217d0b --- /dev/null +++ b/tools/elftosb/Makefile @@ -0,0 +1,31 @@ +# +# Copyright (C) 2006 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +include $(TOPDIR)/rules.mk + +PKG_NAME:=elftosb +PKG_VERSION:=10.12.01 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://repository.timesys.com/buildsources/e/elftosb/elftosb-10.12.01/ +PKG_MD5SUM:=e8005d606c1e0bb3507c82f6eceb3056 + +HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_VERSION) + +include $(INCLUDE_DIR)/host-build.mk + +define Host/Compile + $(MAKE) -C $(HOST_BUILD_DIR) -f makefile LDFLAGS="$(HOST_STATIC_LINKING)" +endef + +define Host/Install + $(INSTALL_BIN) $(HOST_BUILD_DIR)/bld/linux/elftosb $(STAGING_DIR_HOST)/bin/elftosb +endef + +define Host/Clean +endef + +$(eval $(call HostBuild)) |