mirror of
https://github.com/gozfree/gear-lib.git
synced 2026-02-08 20:53:16 +08:00
15 lines
257 B
Makefile
15 lines
257 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libdebug
|
|
|
|
LIBRARIES_DIR := $(LOCAL_PATH)/../
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)
|
|
|
|
# Add your application source files here...
|
|
LOCAL_SRC_FILES := libdebug.c
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|