wifi docs: fix a few typos and inconsistencies, add examples
[openwrt/svn-archive/archive.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 CFLAGS := $(HOSTCFLAGS) -O2 -I../include
22 ifneq ($(HOST_OS),Linux)
23 CFLAGS += -Dloff_t=off_t -D__BYTE_ORDER=BYTE_ORDER -I$(STAGING_DIR)/include-host -include getline.h -include endian.h
24 endif
25
26 define Build/Compile
27 $(MAKE) -C $(PKG_BUILD_DIR)/util LINUXDIR="$(LINUX_HEADERS_DIR)" CFLAGS="$(CFLAGS)" TARGETS=mkfs.jffs2
28 endef
29
30 define Build/Install
31 mkdir -p $(STAGING_DIR)/bin
32 $(CP) $(PKG_BUILD_DIR)/util/mkfs.jffs2 $(STAGING_DIR)/bin/
33 endef
34
35 define Build/Clean
36 rm -f $(STAGING_DIR)/bin/mkfs.jffs2
37 endef
38
39 $(eval $(call HostBuild))