misc/physfs/src/Android.mk
author Xeli
Sun, 18 Nov 2012 19:33:15 +0100
changeset 8062 abbcdf73327a
child 8073 5a289ef40fdb
permissions -rw-r--r--
allow the engine to use physfs on android too
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8062
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
     1
LOCAL_PATH := $(call my-dir)
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
     2
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
     3
include $(CLEAR_VARS)
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
     4
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
     5
LOCAL_MODULE    := physfs
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
     6
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
     7
LOCAL_CFLAGS := -O2 -DPHYSFS_NO_CDROM_SUPPORT 
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
     8
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
     9
LOCAL_C_INCLUDES := $(LOCAL_PATH)
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    10
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    11
LOCAL_SRC_FILES :=    physfs.c \
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    12
    physfs_byteorder.c \
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    13
    physfs_unicode.c \
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    14
    platform_posix.c \
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    15
    platform_unix.c \
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    16
    platform_macosx.c \
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    17
    platform_windows.c \
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    18
    archiver_dir.c \
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    19
    archiver_grp.c \
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    20
    archiver_hog.c \
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    21
    archiver_lzma.c \
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    22
    archiver_mvl.c \
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    23
    archiver_qpak.c \
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    24
    archiver_wad.c \
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    25
    archiver_zip.c \
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    26
    
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    27
include $(BUILD_SHARED_LIBRARY)