diff options
Diffstat (limited to 'gpttool/Android.mk')
-rw-r--r-- | gpttool/Android.mk | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gpttool/Android.mk b/gpttool/Android.mk new file mode 100644 index 0000000..a9fffe9 --- /dev/null +++ b/gpttool/Android.mk @@ -0,0 +1,14 @@ +ifeq ($(HOST_OS),linux) + +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_SRC_FILES := gpttool.c +LOCAL_STATIC_LIBRARIES := libz + +LOCAL_MODULE := gpttool +LOCAL_MODULE_TAGS := eng + +include $(BUILD_HOST_EXECUTABLE) + +endif |