build system refactoring in preparation for allowing packages to do host-build steps
[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 HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_VERSION).orig
18
19 include $(INCLUDE_DIR)/host-build.mk
20
21 CFLAGS := $(HOST_CFLAGS) -I../include
22 ifneq ($(HOST_OS),Linux)
23 CFLAGS += -Dloff_t=off_t -D__BYTE_ORDER=BYTE_ORDER -include getline.h -include endian.h
24 endif
25
26 define Host/Compile
27         $(MAKE) -C $(HOST_BUILD_DIR)/util CFLAGS="$(CFLAGS)" TARGETS=mkfs.jffs2
28 endef
29
30 define Host/Install
31         $(CP) $(HOST_BUILD_DIR)/util/mkfs.jffs2 $(STAGING_DIR_HOST)/bin/
32 endef
33
34 define Host/Clean
35         rm -f $(STAGING_DIR_HOST)/bin/mkfs.jffs2
36 endef
37
38 $(eval $(call HostBuild))