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
37 lines
376 B
Makefile
37 lines
376 B
Makefile
|
|
LOCAL_PATH := $(call my-dir)/../libraries/bzip2
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
LOCAL_MODULE := bzip2_gl3
|
|
|
|
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)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|