misc/physfs/src/Android.mk
author koda
Tue, 20 Nov 2012 18:33:09 +0100
changeset 8073 5a289ef40fdb
parent 8062 abbcdf73327a
child 8461 69bd802c28f0
permissions -rw-r--r--
physfs compilation on windows * external calls must always be named * physfs has to be compiled as dll * there shouln't be external variables, implemented a function that sets buffer * physfs extras is now integrated in main physfs * removed physfs extras
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 \
8073
5a289ef40fdb physfs compilation on windows
koda
parents: 8062
diff changeset
    26
    ../extras/hwpacksmounter.c \
5a289ef40fdb physfs compilation on windows
koda
parents: 8062
diff changeset
    27
    ../extras/physfslualoader.c \
5a289ef40fdb physfs compilation on windows
koda
parents: 8062
diff changeset
    28
    ../extras/physfsrwops.c \
8062
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    29
    
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents:
diff changeset
    30
include $(BUILD_SHARED_LIBRARY)