[tools] do not build nor install mkfs.ubifs until we have it fixed
[openwrt.git] / tools / mtd-utils / Makefile
index a74c941..69b7b15 100644 (file)
@@ -1,5 +1,5 @@
-# 
-# Copyright (C) 2006 OpenWrt.org
+#
+# Copyright (C) 2006-2010 OpenWrt.org
 #
 # This is free software, licensed under the GNU General Public License v2.
 # See /LICENSE for more information.
@@ -21,7 +21,7 @@ HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_VERSION)
 
 include $(INCLUDE_DIR)/host-build.mk
 
-CFLAGS := $(HOST_CFLAGS) -I../include
+CFLAGS := $(HOST_CFLAGS) -I$(HOST_BUILD_DIR)/include -L$(HOST_BUILD_DIR)
 ifneq ($(HOST_OS),Linux)
 CFLAGS += -Dloff_t=off_t -D__BYTE_ORDER=BYTE_ORDER -include getline.h -include endian.h
 endif
@@ -36,14 +36,20 @@ define Host/Compile
        $(MAKE) -C $(HOST_BUILD_DIR) \
                $(MTD_MAKEOPTS) \
                TARGETS=mkfs.jffs2
+       $(MAKE) -C $(HOST_BUILD_DIR)/ubi-utils \
+               $(MTD_MAKEOPTS) \
+               TARGETS=ubinize
 endef
 
 define Host/Install
-       $(CP) $(HOST_BUILD_DIR)/mkfs.jffs2 $(STAGING_DIR_HOST)/bin/
+       $(CP) \
+               $(HOST_BUILD_DIR)/mkfs.jffs2 \
+               $(HOST_BUILD_DIR)/ubinize \
+               $(STAGING_DIR_HOST)/bin/
 endef
 
 define Host/Clean
-       rm -f $(STAGING_DIR_HOST)/bin/mkfs.jffs2
+       rm -f $(STAGING_DIR_HOST)/bin/{mkfs.jffs2,ubinize}
 endef
 
 $(eval $(call HostBuild))
This page took 0.0237 seconds and 4 git commands to generate.