| 123456789101112131415161718192021222324252627282930313233343536373839404142 | LOCAL_PATH := $(call my-dir)include $(CLEAR_VARS)LOCAL_CFLAGS := -W -Wall -Werror -D_POSIX_C_SOURCE=200112LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/../../# bionic /sys/types.h fails with -std=c++0x, as it doesn't include# stdint.h, but tries to use uint64_t.LOCAL_CPPFLAGS := -std=gnu++0xLOCAL_EXPORT_CPPFLAGS := -std=gnu++0x# libzipper throws exceptionsLOCAL_CPPFLAGS += -fexceptions -frttiLOCAL_EXPORT_CPPFLAGS += -fexceptions -frttiLOCAL_CPP_EXTENSION := .ccLOCAL_LDLIBS := -lzLOCAL_EXPORT_LDLIBS := -lzLOCAL_MODULE    := zipperLOCAL_MODULE_FILENAME    := libzipperLOCAL_SRC_FILES :=\	../../CompressedFile.cc \	../../deflate.cc \	../../gzip.cc \	../../zip.cc \	../../Compressor.cc \	../../Exception.cc \	../../Reader.cc \	../../zipper.cc \	../../Container.cc \	../../FileReader.cc \	../../Decompressor.cc \	../../FileWriter.cc \	../../Writer.cc \	../../port/strerror_posix.cc \include $(BUILD_STATIC_LIBRARY)
 |