diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
commit | b6c1cf6de79035f58b512f4400db458c8401379a (patch) | |
tree | 68979db37c85b499bc384e4ac337ed1424baab51 /tools/iself/Android.mk | |
download | build-b6c1cf6de79035f58b512f4400db458c8401379a.zip build-b6c1cf6de79035f58b512f4400db458c8401379a.tar.gz build-b6c1cf6de79035f58b512f4400db458c8401379a.tar.bz2 |
Initial Contribution
Diffstat (limited to 'tools/iself/Android.mk')
-rwxr-xr-x | tools/iself/Android.mk | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tools/iself/Android.mk b/tools/iself/Android.mk new file mode 100755 index 0000000..49fabff --- /dev/null +++ b/tools/iself/Android.mk @@ -0,0 +1,23 @@ +# Copyright 2005 The Android Open Source Project +# +# Android.mk for iself +# + +LOCAL_PATH:= $(call my-dir) + +include $(CLEAR_VARS) + +LOCAL_CFLAGS += -O2 -g +LOCAL_CFLAGS += -fno-function-sections -fno-data-sections -fno-inline +LOCAL_CFLAGS += -Wall -Wno-unused-function #-Werror +LOCAL_CFLAGS += -DDEBUG + +LOCAL_C_INCLUDES:= \ + $(LOCAL_PATH)/ + +LOCAL_SRC_FILES := \ + iself.c + +LOCAL_MODULE := iself + +include $(BUILD_HOST_EXECUTABLE) |