Home | History | Annotate | Download | only in editdisklbl
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 
      5 ifeq ($(TARGET_ARCH),x86)
      6 
      7 LOCAL_SRC_FILES := \
      8 	editdisklbl.c
      9 
     10 LOCAL_CFLAGS := -O2 -g -W -Wall -Werror
     11 
     12 LOCAL_MODULE := editdisklbl
     13 LOCAL_STATIC_LIBRARIES := libdiskconfig_host libcutils liblog
     14 
     15 include $(BUILD_HOST_EXECUTABLE)
     16 
     17 endif   # TARGET_ARCH == x86
     18