mirror of
https://github.com/DrBeef/QuestZDoom.git
synced 2025-05-30 00:10:49 +00:00
15 lines
381 B
Makefile
15 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)
|