The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES := \ |
| 5 | Hash.c \ |
| 6 | SysUtil.c \ |
| 7 | DirUtil.c \ |
| 8 | Inlines.c \ |
| 9 | Zip.c |
| 10 | |
Kenny Root | 7eb7567 | 2012-10-16 10:47:27 -0700 | [diff] [blame] | 11 | LOCAL_C_INCLUDES := \ |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 12 | external/zlib \ |
| 13 | external/safe-iop/include |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 14 | |
Matt Mower | 231daef | 2015-11-11 23:13:44 -0600 | [diff] [blame] | 15 | ifeq ($(TWHAVE_SELINUX),true) |
| 16 | LOCAL_C_INCLUDES += external/libselinux/include |
| 17 | LOCAL_SHARED_LIBRARIES += libselinux |
| 18 | LOCAL_CFLAGS += -DHAVE_SELINUX |
| 19 | endif |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 20 | |
Ethan Yonker | 738be7a | 2014-12-10 11:40:43 -0600 | [diff] [blame] | 21 | LOCAL_CFLAGS += -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION) |
| 22 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 23 | LOCAL_MODULE := libminzip |
| 24 | |
Matt Mower | 231daef | 2015-11-11 23:13:44 -0600 | [diff] [blame] | 25 | LOCAL_SHARED_LIBRARIES += libz |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 26 | |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 27 | LOCAL_CLANG := true |
| 28 | |
| 29 | LOCAL_CFLAGS += -Werror -Wall |
| 30 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 31 | include $(BUILD_SHARED_LIBRARY) |
Dees_Troy | f6b15d1 | 2013-04-11 15:29:54 +0000 | [diff] [blame] | 32 | |
| 33 | |
| 34 | include $(CLEAR_VARS) |
| 35 | |
| 36 | LOCAL_SRC_FILES := \ |
| 37 | Hash.c \ |
| 38 | SysUtil.c \ |
| 39 | DirUtil.c \ |
| 40 | Inlines.c \ |
| 41 | Zip.c |
| 42 | |
| 43 | LOCAL_C_INCLUDES += \ |
| 44 | external/zlib \ |
| 45 | external/safe-iop/include |
| 46 | |
Dees Troy | 4bf3b0d | 2013-09-11 19:12:49 +0000 | [diff] [blame] | 47 | ifeq ($(TWHAVE_SELINUX),true) |
Dees_Troy | f6b15d1 | 2013-04-11 15:29:54 +0000 | [diff] [blame] | 48 | LOCAL_C_INCLUDES += external/libselinux/include |
| 49 | LOCAL_STATIC_LIBRARIES += libselinux |
| 50 | LOCAL_CFLAGS += -DHAVE_SELINUX |
| 51 | endif |
| 52 | |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 53 | LOCAL_CFLAGS += -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION) |
| 54 | |
Dees_Troy | f6b15d1 | 2013-04-11 15:29:54 +0000 | [diff] [blame] | 55 | LOCAL_MODULE := libminzip |
| 56 | |
Matt Mower | 231daef | 2015-11-11 23:13:44 -0600 | [diff] [blame] | 57 | LOCAL_STATIC_LIBRARIES += libz |
Dees_Troy | f6b15d1 | 2013-04-11 15:29:54 +0000 | [diff] [blame] | 58 | |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 59 | LOCAL_CLANG := true |
| 60 | |
Elliott Hughes | f267dee | 2015-06-23 12:31:02 -0700 | [diff] [blame] | 61 | LOCAL_CFLAGS += -Werror -Wall |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 62 | |
Dees_Troy | f6b15d1 | 2013-04-11 15:29:54 +0000 | [diff] [blame] | 63 | include $(BUILD_STATIC_LIBRARY) |