• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1LOCAL_PATH := $(call my-dir)
2
3libext2_com_err_src_files := \
4	error_message.c \
5	et_name.c \
6	init_et.c \
7	com_err.c \
8	com_right.c
9
10libext2_com_err_c_includes := external/e2fsprogs/lib
11
12libext2_com_err_cflags := -O2 -g -W -Wall \
13	-DHAVE_UNISTD_H \
14	-DHAVE_ERRNO_H \
15	-DHAVE_NETINET_IN_H \
16	-DHAVE_SYS_IOCTL_H \
17	-DHAVE_SYS_MMAN_H \
18	-DHAVE_SYS_MOUNT_H \
19	-DHAVE_SYS_RESOURCE_H \
20	-DHAVE_SYS_SELECT_H \
21	-DHAVE_SYS_STAT_H \
22	-DHAVE_SYS_TYPES_H \
23	-DHAVE_STDLIB_H \
24	-DHAVE_STRDUP \
25	-DHAVE_MMAP \
26	-DHAVE_UTIME_H \
27	-DHAVE_GETPAGESIZE \
28	-DHAVE_EXT2_IOCTLS \
29	-DHAVE_TYPE_SSIZE_T \
30	-DHAVE_SYS_TIME_H \
31	-DHAVE_SYSCONF
32
33libext2_com_err_cflags_linux := \
34	-DHAVE_LINUX_FD_H \
35	-DHAVE_SYS_PRCTL_H \
36	-DHAVE_LSEEK64 \
37	-DHAVE_LSEEK64_PROTOTYPE
38
39libext2_com_err_system_shared_libraries := libc
40
41include $(CLEAR_VARS)
42
43LOCAL_SRC_FILES := $(libext2_com_err_src_files)
44LOCAL_C_INCLUDES := $(libext2_com_err_c_includes)
45LOCAL_CFLAGS := $(libext2_com_err_cflags) $(libext2_com_err_cflags_linux)
46LOCAL_SYSTEM_SHARED_LIBRARIES := libc
47LOCAL_MODULE := libext2_com_err
48LOCAL_MODULE_TAGS := optional
49LOCAL_PRELINK_MODULE := false
50
51include $(BUILD_SHARED_LIBRARY)
52
53include $(CLEAR_VARS)
54
55LOCAL_SRC_FILES := $(libext2_com_err_src_files)
56LOCAL_C_INCLUDES := $(libext2_com_err_c_includes)
57ifeq ($(HOST_OS),linux)
58LOCAL_CFLAGS := $(libext2_com_err_cflags) $(libext2_com_err_cflags_linux)
59else
60LOCAL_CFLAGS := $(libext2_com_err_cflags)
61endif
62LOCAL_MODULE := libext2_com_err_host
63LOCAL_MODULE_STEM := libext2_com_err
64LOCAL_MODULE_TAGS := optional
65LOCAL_PRELINK_MODULE := false
66
67include $(BUILD_HOST_SHARED_LIBRARY)
68