mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 00:41:55 +00:00
91ede1126f
All prior changes can be found on the (will be published in the future) RazeXR repo
40 lines
404 B
Makefile
40 lines
404 B
Makefile
|
|
LOCAL_PATH := $(call my-dir)/../libraries/zlib
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
LOCAL_MODULE := zlib_gl3
|
|
|
|
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)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|