mirror of
https://github.com/gozfree/gear-lib.git
synced 2026-02-07 20:28:58 +08:00
19 lines
310 B
Makefile
19 lines
310 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libplugin
|
|
|
|
ifeq ($(MODE), release)
|
|
LOCAL_CFLAGS += -O2
|
|
endif
|
|
|
|
LIBRARIES_DIR := $(LOCAL_PATH)/../
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)
|
|
|
|
# Add your application source files here...
|
|
LOCAL_SRC_FILES := libplugin.c
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|