questzdoom/Projects/Android/jni/gzdoom-g3.3mgw_mobile/mobile/Android_zlib.mk
Simon 4f3b54e84a Major Update - LZDoom 3.85
- Updated to LZDoom 3.85
- Fix for issue where multi-projectile weapons don't have projectile spread
- Configurable cinema mode toggle button
2020-05-28 23:57:00 +01:00

40 lines
405 B
Makefile

LOCAL_PATH := $(call my-dir)/../libraries/zlib
include $(CLEAR_VARS)
LOCAL_MODULE := zlib_lz
LOCAL_CFLAGS = -Wall
LOCAL_LDLIBS += -llog
LOCAL_C_INCLUDES :=
LOCAL_SRC_FILES = \
adler32.c \
compress.c \
crc32.c \
deflate.c \
inflate.c \
infback.c \
inftrees.c \
inffast.c \
trees.c \
uncompr.c \
zutil.c \
include $(BUILD_STATIC_LIBRARY)