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 | |
Kenny Root | 7eb7567 | 2012-10-16 10:47:27 -0700 | [diff] [blame] | 15 | LOCAL_STATIC_LIBRARIES := libselinux |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 16 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 17 | LOCAL_MODULE := libminzip |
| 18 | |
| 19 | LOCAL_CFLAGS += -Wall |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 20 | LOCAL_SHARED_LIBRARIES := libz |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 21 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 22 | include $(BUILD_SHARED_LIBRARY) |
Dees_Troy | f6b15d1 | 2013-04-11 15:29:54 +0000 | [diff] [blame] | 23 | |
| 24 | |
| 25 | include $(CLEAR_VARS) |
| 26 | |
| 27 | LOCAL_SRC_FILES := \ |
| 28 | Hash.c \ |
| 29 | SysUtil.c \ |
| 30 | DirUtil.c \ |
| 31 | Inlines.c \ |
| 32 | Zip.c |
| 33 | |
| 34 | LOCAL_C_INCLUDES += \ |
| 35 | external/zlib \ |
| 36 | external/safe-iop/include |
| 37 | |
Dees Troy | 4bf3b0d | 2013-09-11 19:12:49 +0000 | [diff] [blame] | 38 | ifeq ($(TWHAVE_SELINUX),true) |
Dees_Troy | f6b15d1 | 2013-04-11 15:29:54 +0000 | [diff] [blame] | 39 | LOCAL_C_INCLUDES += external/libselinux/include |
| 40 | LOCAL_STATIC_LIBRARIES += libselinux |
| 41 | LOCAL_CFLAGS += -DHAVE_SELINUX |
| 42 | endif |
| 43 | |
| 44 | LOCAL_MODULE := libminzip |
| 45 | |
| 46 | LOCAL_CFLAGS += -Wall |
| 47 | LOCAL_STATIC_LIBRARIES := libz |
| 48 | |
| 49 | include $(BUILD_STATIC_LIBRARY) |