Home | History | Annotate | Download | only in gensprep
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 
      5 LOCAL_SRC_FILES := gensprep.c store.c
      6 
      7 LOCAL_STATIC_LIBRARIES := libicutu libicuuc libicui18n
      8 
      9 ifneq ($(TARGET_ARCH),arm)
     10 LOCAL_LDLIBS += -lpthread -ldl
     11 endif
     12 
     13 LOCAL_CFLAGS += 
     14 
     15 LOCAL_C_INCLUDES += \
     16 	$(LOCAL_PATH) \
     17 	$(LOCAL_PATH)/../toolutil \
     18 	$(LOCAL_PATH)/../../common
     19 
     20 LOCAL_MODULE := gensprep
     21 
     22 include $(BUILD_HOST_EXECUTABLE)
     23