mirror of
https://github.com/DrBeef/QuestZDoom.git
synced 2025-03-06 17:32:00 +00:00
12 lines
237 B
Makefile
12 lines
237 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := soxhelper
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../src
|
|
|
|
LOCAL_SRC_FILES := helper.c
|
|
LOCAL_LDLIBS := -lz -ldl
|
|
LOCAL_STATIC_LIBRARIES := sox
|
|
include $(BUILD_SHARED_LIBRARY)
|