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
37 lines
375 B
Makefile
37 lines
375 B
Makefile
|
|
LOCAL_PATH := $(call my-dir)/../libraries/bzip2
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
LOCAL_MODULE := bzip2_lz
|
|
|
|
LOCAL_CFLAGS :=
|
|
|
|
LOCAL_LDLIBS += -llog
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include/
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES = \
|
|
blocksort.c \
|
|
bzlib.c \
|
|
compress.c \
|
|
crctable.c \
|
|
decompress.c \
|
|
huffman.c \
|
|
randtable.c \
|
|
|
|
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|