Matt Mower | 80f7b36 | 2015-12-12 15:38:01 -0600 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
Matt Mower | 80f7b36 | 2015-12-12 15:38:01 -0600 | [diff] [blame] | 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE := fsckexfat |
| 5 | LOCAL_MODULE_STEM := fsck.exfat |
Matt Mower | 09ef1e4 | 2015-12-13 11:29:45 -0600 | [diff] [blame] | 6 | LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES |
Matt Mower | 80f7b36 | 2015-12-12 15:38:01 -0600 | [diff] [blame] | 7 | LOCAL_MODULE_TAGS := optional |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 8 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/bin |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 9 | LOCAL_CFLAGS = -D_FILE_OFFSET_BITS=64 -Wno-sign-compare |
Matt Mower | 80f7b36 | 2015-12-12 15:38:01 -0600 | [diff] [blame] | 10 | LOCAL_SRC_FILES = main.c |
| 11 | LOCAL_C_INCLUDES += $(LOCAL_PATH) \ |
Matt Mower | 09ef1e4 | 2015-12-13 11:29:45 -0600 | [diff] [blame] | 12 | $(commands_recovery_local_path)/exfat/libexfat \ |
| 13 | $(commands_recovery_local_path)/fuse/include |
| 14 | LOCAL_SHARED_LIBRARIES := libexfat_twrp |
Matt Mower | 80f7b36 | 2015-12-12 15:38:01 -0600 | [diff] [blame] | 15 | |
| 16 | include $(BUILD_EXECUTABLE) |