Home | History | Annotate | Download | only in mmc-utils
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 LOCAL_MODULE_TAGS := debug
      5 LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
      6 LOCAL_SRC_FILES:= mmc.c mmc_cmds.c
      7 LOCAL_SRC_FILES += 3rdparty/hmac_sha/sha2.c 3rdparty/hmac_sha/hmac_sha2.c
      8 LOCAL_CFLAGS += -Werror
      9 LOCAL_MODULE := mmc_utils
     10 LOCAL_SHARED_LIBRARIES := libcutils libc
     11 include $(BUILD_EXECUTABLE)
     12