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