bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE := exfat-fuse |
| 5 | LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 6 | LOCAL_MODULE_TAGS := optional |
Matt Mower | 09ef1e4 | 2015-12-13 11:29:45 -0600 | [diff] [blame] | 7 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 8 | LOCAL_CFLAGS = -D_FILE_OFFSET_BITS=64 |
| 9 | LOCAL_SRC_FILES = main.c |
| 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 \ |
Matt Mower | 09ef1e4 | 2015-12-13 11:29:45 -0600 | [diff] [blame] | 12 | $(commands_recovery_local_path)/fuse/include \ |
| 13 | $(commands_recovery_local_path)/fuse/android |
| 14 | LOCAL_SHARED_LIBRARIES := libexfat_twrp |
| 15 | LOCAL_STATIC_LIBRARIES := libfusetwrp |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 16 | |
| 17 | include $(BUILD_EXECUTABLE) |