mirror of
https://github.com/gozfree/gear-lib.git
synced 2026-02-06 19:33:16 +08:00
19 lines
314 B
Makefile
19 lines
314 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libconfig++
|
|
|
|
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 := libconfig++.c
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|