blob: e1158f20d50a8ca5ba5127cc75791ecff4b2626e [file] [log] [blame]
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001LOCAL_PATH := $(call my-dir)
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002include $(CLEAR_VARS)
3
4LOCAL_MODULE := mkexfatfs
Matt Mower09ef1e42015-12-13 11:29:45 -06005LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES
bigbiff bigbiff9c754052013-01-09 09:09:08 -05006LOCAL_MODULE_TAGS := optional
bigbiffad58e1b2020-07-06 20:24:34 -04007LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/bin
Ethan Yonker58f21322018-08-24 11:17:36 -05008LOCAL_CFLAGS = -D_FILE_OFFSET_BITS=64 -Wno-sign-compare
Matt Mower09ef1e42015-12-13 11:29:45 -06009LOCAL_SRC_FILES = cbm.c fat.c main.c mkexfat.c rootdir.c uct.c uctc.c vbr.c
bigbiff bigbiff9c754052013-01-09 09:09:08 -050010LOCAL_C_INCLUDES += $(LOCAL_PATH) \
Matt Mower55c75ca2014-08-31 11:30:15 -050011 $(commands_recovery_local_path)/exfat/libexfat \
12 $(commands_recovery_local_path)/fuse/include
Matt Mower09ef1e42015-12-13 11:29:45 -060013LOCAL_SHARED_LIBRARIES := libexfat_twrp
14LOCAL_STATIC_LIBRARIES := libfusetwrp
bigbiff bigbiff9c754052013-01-09 09:09:08 -050015
16include $(BUILD_EXECUTABLE)