43 lines
778 B
Makefile
43 lines
778 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_C_INCLUDES:= $(LOCAL_PATH)/..
|
|
|
|
LOCAL_CFLAGS:= \
|
|
-O3 \
|
|
-DDBUS_COMPILATION \
|
|
-DDBUS_DAEMON_NAME=\"dbus-daemon\" \
|
|
-DDBUS_SYSTEM_CONFIG_FILE=\"/system/etc/dbus.conf\" \
|
|
-DDBUS_SESSION_CONFIG_FILE=\"/system/etc/session.conf\" \
|
|
-Wno-address \
|
|
-Wno-empty-body \
|
|
-Wno-pointer-sign \
|
|
-Wno-sign-compare \
|
|
-Wno-unused-parameter
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
activation.c \
|
|
bus.c \
|
|
config-loader-expat.c \
|
|
config-parser.c \
|
|
config-parser-common.c \
|
|
connection.c \
|
|
desktop-file.c \
|
|
dir-watch-default.c \
|
|
dispatch.c \
|
|
driver.c \
|
|
expirelist.c \
|
|
main.c \
|
|
policy.c \
|
|
selinux.c \
|
|
services.c \
|
|
signals.c \
|
|
utils.c
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libexpat \
|
|
libdbus
|
|
|
|
LOCAL_MODULE:=dbus-daemon
|
|
|
|
include $(BUILD_EXECUTABLE)
|