Home | History | Annotate | Download | only in gpttool
      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 LOCAL_CFLAGS := -Werror
      9 
     10 LOCAL_MODULE := gpttool
     11 
     12 include $(BUILD_HOST_EXECUTABLE)
     13 
     14 endif
     15