1# Copyright 2005 The Android Open Source Project 2 3LOCAL_PATH:= $(call my-dir) 4include $(CLEAR_VARS) 5 6LOCAL_SRC_FILES := \ 7 yaffs2/utils/mkyaffs2image.c \ 8 yaffs2/yaffs_packedtags2.c \ 9 yaffs2/yaffs_tagsvalidity.c 10 11LOCAL_CFLAGS = -O2 -Wall -DCONFIG_YAFFS_UTIL 12LOCAL_CFLAGS+= -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations 13LOCAL_CFLAGS+= -Wmissing-prototypes -Wredundant-decls -Wnested-externs -Winline 14 15LOCAL_C_INCLUDES += $(LOCAL_PATH)/yaffs2 16 17LOCAL_MODULE := mkyaffs2image 18 19include $(BUILD_HOST_EXECUTABLE) 20 21$(call dist-for-goals,droid,$(LOCAL_BUILT_MODULE)) 22