1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-15 21:26:36 +03:00
openwrt-xburst/tools/dtc/Makefile
ralph 1f5ca792f8 put the dtc to the other host tools (thanks to Thomas)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10616 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-03-18 20:44:12 +00:00

34 lines
677 B
Makefile

#
# Copyright (C) 2008 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:=dtc
PKG_VERSION:=1.1.0
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=http://www.jdl.com/software
PKG_MD5SUM:=6c84b01f500bc989b0b1ad6138fb93d5
PKG_CAT:=zcat
PKG_BUILD_DIR=$(BUILD_DIR_HOST)/$(PKG_NAME)
include $(INCLUDE_DIR)/host-build.mk
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR)
endef
define Build/Install
$(INSTALL_BIN) $(PKG_BUILD_DIR)/dtc $(STAGING_DIR_HOST)/bin/
endef
define Build/Clean
rm -f $(STAGING_DIR_HOST)/bin/dtc
endef
$(eval $(call HostBuild))