mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-27 10:10:23 +01:00
* tools/dbus-send.c, tools/dbus-monitor.c: two utility programs from Philip Blundell to send messages and monitor them.
18 lines
359 B
Makefile
18 lines
359 B
Makefile
INCLUDES=-I$(top_srcdir) $(DBUS_CLIENT_CFLAGS) $(DBUS_GLIB_CFLAGS)
|
|
|
|
if HAVE_GLIB
|
|
GLIB_TOOLS=dbus-monitor
|
|
else
|
|
GLIB_TOOLS=
|
|
endif
|
|
|
|
bin_PROGRAMS=dbus-send $(GLIB_TOOLS)
|
|
|
|
dbus_send_SOURCES= \
|
|
dbus-send.c
|
|
|
|
dbus_monitor_SOURCES= \
|
|
dbus-monitor.c
|
|
|
|
dbus_send_LDADD= $(top_builddir)/dbus/libdbus-1.la
|
|
dbus_monitor_LDADD= $(top_builddir)/glib/libdbus-glib-1.la
|