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