dc832dc551
This patch fixes Android.mk and enables building bctest as an optional module without any extra hacks. Change-Id: Icaf8bf9452776db2ea4a2ba75f3abf05b4e2cdab Signed-off-by: Serban Constantinescu <serban.constantinescu@arm.com>
20 lines
459 B
Makefile
20 lines
459 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
svc_c_flags = \
|
|
-Wall -Wextra \
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SHARED_LIBRARIES := liblog
|
|
LOCAL_SRC_FILES := bctest.c binder.c
|
|
LOCAL_CFLAGS += $(svc_c_flags)
|
|
LOCAL_MODULE := bctest
|
|
LOCAL_MODULE_TAGS := optional
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SHARED_LIBRARIES := liblog
|
|
LOCAL_SRC_FILES := service_manager.c binder.c
|
|
LOCAL_CFLAGS += $(svc_c_flags)
|
|
LOCAL_MODULE := servicemanager
|
|
include $(BUILD_EXECUTABLE)
|