mirror of
https://github.com/DrBeef/QuestZDoom.git
synced 2025-03-06 01:11:27 +00:00
- Updated to LZDoom 3.85 - Fix for issue where multi-projectile weapons don't have projectile spread - Configurable cinema mode toggle button
40 lines
405 B
Makefile
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)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|