15 lines
343 B
Makefile
15 lines
343 B
Makefile
ifneq ($(TARGET_SIMULATOR),true)
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
#include $(CLEAR_VARS)
|
|
#LOCAL_SRC_FILES := bctest.c binder.c
|
|
#LOCAL_MODULE := bctest
|
|
#include $(BUILD_EXECUTABLE)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SHARED_LIBRARIES := liblog
|
|
LOCAL_SRC_FILES := service_manager.c binder.c
|
|
LOCAL_MODULE := servicemanager
|
|
include $(BUILD_EXECUTABLE)
|
|
endif
|