OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / build / tools / iself / Android.mk
1 # Copyright 2005 The Android Open Source Project
2 #
3 # Android.mk for iself
4 #
5
6 LOCAL_PATH:= $(call my-dir)
7
8 include $(CLEAR_VARS)
9
10 LOCAL_CFLAGS += -O2 -g
11 LOCAL_CFLAGS += -fno-function-sections -fno-data-sections -fno-inline
12 LOCAL_CFLAGS += -Wall -Wno-unused-function #-Werror
13 LOCAL_CFLAGS += -DDEBUG
14
15 LOCAL_C_INCLUDES:= \
16         $(LOCAL_PATH)/
17
18 LOCAL_SRC_FILES := \
19         iself.c
20
21 LOCAL_MODULE := iself
22
23 include $(BUILD_HOST_EXECUTABLE)