lars 1e28de24b4 [packages] Use default templates instead of custom reimplementations where applicable
git-svn-id: svn://svn.openwrt.org/openwrt/packages@19705 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-02-18 13:10:21 +00:00

41 lines
818 B
Makefile

#
# Copyright (C) 2009 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:=ucmb-tools
PKG_RELEASE:=1
include $(INCLUDE_DIR)/package.mk
define Package/ucmb-tools
SECTION:=utils
CATEGORY:=Utilities
TITLE:=Microcontroller Message Bus tools
DEPENDS:=+kmod-ucmb
endef
define Package/ucmb-tools/description
Debugging tool for UCMB
endef
define Build/Prepare
$(CP) ./tools/* $(PKG_BUILD_DIR)/
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
$(TARGET_CONFIGURE_OPTS) CFLAGS="$(TARGET_CFLAGS) -I$(LINUX_DIR)/include"
endef
define Package/ucmb-tools/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ucmb $(1)/usr/bin/
endef
$(eval $(call BuildPackage,ucmb-tools))