1ifeq ($(HOST_OS),linux) 2 3LOCAL_PATH:= $(call my-dir) 4include $(CLEAR_VARS) 5 6LOCAL_SRC_FILES := gpttool.c 7LOCAL_STATIC_LIBRARIES := libz 8 9LOCAL_MODULE := gpttool 10LOCAL_MODULE_TAGS := eng 11 12include $(BUILD_HOST_EXECUTABLE) 13 14endif 15
1ifeq ($(HOST_OS),linux) 2 3LOCAL_PATH:= $(call my-dir) 4include $(CLEAR_VARS) 5 6LOCAL_SRC_FILES := gpttool.c 7LOCAL_STATIC_LIBRARIES := libz 8 9LOCAL_MODULE := gpttool 10LOCAL_MODULE_TAGS := eng 11 12include $(BUILD_HOST_EXECUTABLE) 13 14endif 15