misc/libphyslayer/Android.mk
author alfadur
Tue, 22 Jan 2019 20:35:11 +0300
changeset 14664 def1b9870078
parent 8538 0e113487c4b2
permissions -rw-r--r--
match literals in fp macro
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8538
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
     1
LOCAL_PATH := $(call my-dir)
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
     2
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
     3
include $(CLEAR_VARS)
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
     4
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
     5
LOCAL_MODULE    := physlayer
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
     6
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
     7
LOCAL_CFLAGS := -O2
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
     8
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
     9
LOCAL_C_INCLUDES := $(LOCAL_PATH) $(MISC_DIR)/liblua $(MISC_DIR)/liblua $(JNI_DIR)/SDL/include
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
    10
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
    11
LOCAL_SRC_FILES := hwpacksmounter.c \
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
    12
                   physfslualoader.c \
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
    13
                   physfsrwops.c \
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
    14
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
    15
LOCAL_SHARED_LIBRARIES += SDL lua
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
    16
0e113487c4b2 blindly updated Android build files for new physfs
koda
parents:
diff changeset
    17
include $(BUILD_SHARED_LIBRARY)