17 lines
319 B
Makefile
17 lines
319 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := main.c data.c ipconfig.c
|
|
|
|
LOCAL_CFLAGS += -Wall -Wno-unused-parameter -Wextra
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
liblog \
|
|
libandroidfw \
|
|
libutils \
|
|
libbinder \
|
|
libjsoncpp
|
|
LOCAL_MODULE := ipconfigstore
|
|
|
|
include $(BUILD_EXECUTABLE)
|