mirror of
https://github.com/CTCaer/CTCaer-TWRP.git
synced 2024-11-24 02:39:40 +00:00
9c754053b0
Add proper mkdosfs tool Add fuse to TWRP Add experimental exfat-fuse to TWRP Convert all system() functions to use new Exec_Cmd function
16 lines
429 B
Makefile
16 lines
429 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libtar
|
|
LOCAL_MODULE_TAGS := eng
|
|
LOCAL_MODULES_TAGS = optional
|
|
LOCAL_CFLAGS =
|
|
LOCAL_SRC_FILES = append.c block.c decode.c encode.c extract.c handle.c output.c util.c wrapper.c basename.c strmode.c libtar_hash.c libtar_list.c dirname.c
|
|
LOCAL_C_INCLUDES += $(LOCAL_PATH) \
|
|
external/zlib
|
|
LOCAL_SHARED_LIBRARIES += libz libc
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|