mirror of
https://github.com/DrBeef/QuestZDoom.git
synced 2025-03-06 17:32:00 +00:00
17 lines
348 B
Makefile
17 lines
348 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := mad
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH) \
|
|
|
|
LOCAL_SRC_FILES := version.c fixed.c bit.c timer.c stream.c frame.c \
|
|
synth.c decoder.c layer12.c layer3.c huffman.c
|
|
|
|
LOCAL_CFLAGS := -Wall -DHAVE_CONFIG_H -DFPM_DEFAULT
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
|