misc/libphysfs/Android.mk
author nemo
Sun, 04 Jan 2015 00:44:14 -0500
branch0.9.21
changeset 10743 1d16c5414fee
parent 8538 0e113487c4b2
permissions -rw-r--r--
Intent is to allow filtering by arbitrary flag combinations. This isn't actually working yet. No idea why. It seems it should. Tired though, so will look at it tomorrow.

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE    := physfs

LOCAL_CFLAGS := -O2 -DPHYSFS_NO_CDROM_SUPPORT

LOCAL_C_INCLUDES := $(LOCAL_PATH)

LOCAL_SRC_FILES := physfs.c \
                   physfs_byteorder.c \
                   physfs_unicode.c \
                   platform_posix.c \
                   platform_unix.c \
                   platform_macosx.c \
                   platform_windows.c \
                   archiver_dir.c \
                   archiver_grp.c \
                   archiver_hog.c \
                   archiver_lzma.c \
                   archiver_mvl.c \
                   archiver_qpak.c \
                   archiver_wad.c \
                   archiver_zip.c \

include $(BUILD_SHARED_LIBRARY)