move tools from toolchain/ to tools/
[openwrt-10.03/.git] / tools / mtd-utils / Makefile
1
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=mtd
10 PKG_VERSION:=20050122
11
12 PKG_SOURCE=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
13 PKG_SOURCE_URL=http://ftp.debian.org/debian/pool/main/m/mtd
14 PKG_MD5SUM:=1f42c2cae08eb9e7b52d0c188f8d6338
15 PKG_CAT:=zcat
16
17 PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION).orig
18
19 include $(INCLUDE_DIR)/host-build.mk
20
21 define Build/Compile
22         $(MAKE) -C $(PKG_BUILD_DIR)/util LINUXDIR=$(LINUX_HEADERS_DIR)
23 endef
24
25 define Build/Install
26         mkdir -p $(STAGING_DIR)/bin
27         $(CP) $(PKG_BUILD_DIR)/util/mkfs.jffs2 $(STAGING_DIR)/bin/
28 endef
29
30 define Build/Clean
31         rm -f $(STAGING_DIR)/bin/mkfs.jffs2
32 endef
33
34 $(eval $(call HostBuild))