mirror of
https://github.com/DrBeef/QuestZDoom.git
synced 2025-05-31 08:41:15 +00:00
16 lines
381 B
Makefile
16 lines
381 B
Makefile
|
LOCAL_PATH := $(call my-dir)
|
||
|
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_MODULE := gsm
|
||
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)
|
||
|
|
||
|
LOCAL_SRC_FILES := add.c code.c decode.c long_term.c lpc.c preprocess.c \
|
||
|
rpe.c gsm_destroy.c gsm_decode.c gsm_encode.c gsm_create.c \
|
||
|
gsm_option.c short_term.c table.c
|
||
|
|
||
|
LOCAL_CFLAGS := -Wall
|
||
|
#LOCAL_LDLIBS := -ldl -llog
|
||
|
|
||
|
include $(BUILD_STATIC_LIBRARY)
|