mirror of
https://github.com/DrBeef/Raze.git
synced 2025-02-17 01:11:06 +00:00
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)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|