b1bb6cfe91
executables have calls to some shared libraries without explicitly linking them. Currently it works as linker links these libraries via dependencies of other libraries. This is fragile and not the right thing to do.
16 lines
229 B
Makefile
16 lines
229 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
app_main.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
libutils \
|
|
libbinder \
|
|
libandroid_runtime
|
|
|
|
LOCAL_MODULE:= app_process
|
|
|
|
include $(BUILD_EXECUTABLE)
|