mirror of
https://github.com/ioacademy-jikim/multimedia
synced 2025-06-07 16:06:18 +00:00
9 lines
218 B
Makefile
9 lines
218 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES:= thread.cpp
|
|
LOCAL_MODULE := my_thread
|
|
LOCAL_SHARED_LIBRARIES:= libcutils libutils libbinder
|
|
LOCAL_MODULE_TAGS := optional
|
|
include $(BUILD_EXECUTABLE)
|
|
|