bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE := mkexfatfs |
Matt Mower | 09ef1e4 | 2015-12-13 11:29:45 -0600 | [diff] [blame] | 5 | LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 6 | LOCAL_MODULE_TAGS := optional |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 7 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/bin |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 8 | LOCAL_CFLAGS = -D_FILE_OFFSET_BITS=64 -Wno-sign-compare |
Matt Mower | 09ef1e4 | 2015-12-13 11:29:45 -0600 | [diff] [blame] | 9 | LOCAL_SRC_FILES = cbm.c fat.c main.c mkexfat.c rootdir.c uct.c uctc.c vbr.c |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 10 | LOCAL_C_INCLUDES += $(LOCAL_PATH) \ |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 11 | $(commands_recovery_local_path)/exfat/libexfat \ |
| 12 | $(commands_recovery_local_path)/fuse/include |
Matt Mower | 09ef1e4 | 2015-12-13 11:29:45 -0600 | [diff] [blame] | 13 | LOCAL_SHARED_LIBRARIES := libexfat_twrp |
| 14 | LOCAL_STATIC_LIBRARIES := libfusetwrp |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 15 | |
| 16 | include $(BUILD_EXECUTABLE) |