mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-02-11 10:40:38 +01:00
* bus/Makefile.am: * bus/activation.c: (bus_activation_entry_free), (add_desktop_file_entry), (load_directory), (bus_activation_init): * bus/activation.h: * bus/main.c: (main): Add simple activation support, doesn't work yet though.
40 lines
740 B
Makefile
40 lines
740 B
Makefile
|
|
INCLUDES=-I$(top_srcdir) $(DBUS_BUS_CFLAGS) \
|
|
-DDAEMON_NAME=\"dbus-daemon-1\" -DDBUS_COMPILATION
|
|
|
|
EFENCE=
|
|
|
|
bin_PROGRAMS=dbus-daemon-1
|
|
|
|
noinst_LTLIBRARIES=libdbus-daemon.la
|
|
|
|
libdbus_daemon_la_SOURCES= \
|
|
activation.c \
|
|
activation.h \
|
|
connection.c \
|
|
connection.h \
|
|
desktop-file.c \
|
|
desktop-file.h \
|
|
dispatch.c \
|
|
dispatch.h \
|
|
driver.c \
|
|
driver.h \
|
|
loop.c \
|
|
loop.h \
|
|
services.c \
|
|
services.h \
|
|
utils.c \
|
|
utils.h
|
|
|
|
|
|
libdbus_daemon_la_LIBADD= \
|
|
$(top_builddir)/dbus/libdbus-convenience.la
|
|
|
|
dbus_daemon_1_SOURCES= \
|
|
main.c
|
|
|
|
dbus_daemon_1_LDADD= \
|
|
$(EFENCE) \
|
|
$(DBUS_BUS_LIBS) \
|
|
$(top_builddir)/bus/libdbus-daemon.la \
|
|
$(top_builddir)/dbus/libdbus-1.la
|