add missing copyright
[openwrt.git] / toolchain / jffs2 / 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_MD5SUM:=1f42c2cae08eb9e7b52d0c188f8d6338
14 PKG_SOURCE_URL=http://ftp.debian.org/debian/pool/main/m/mtd
15 PKG_CAT:=zcat
16
17 PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/mtd-20050122.orig
18
19 include $(INCLUDE_DIR)/host-build.mk
20
21 define Build/Compile
22         $(MAKE) LINUXDIR=$(LINUX_HEADERS_DIR) -C $(PKG_BUILD_DIR)/util
23 endef
24
25 define Build/Install
26         $(CP) $(PKG_BUILD_DIR)/util/mkfs.jffs2 $(STAGING_DIR)/bin/
27 endef
28
29 $(eval $(call HostBuild))