mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-01 17:30:13 +01:00
Since Automake 1.11.4, an empty localstatelib_DATA variable will not create $(localstatelibdir) as a side-effect. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=51406 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> Reviewed-by: Lennart Poettering <lennart@poettering.net>
80 lines
1.5 KiB
Makefile
80 lines
1.5 KiB
Makefile
configdir=$(sysconfdir)/dbus-1
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir) \
|
|
$(DBUS_STATIC_BUILD_CPPFLAGS) \
|
|
$(DBUS_X_CFLAGS) \
|
|
-DDBUS_COMPILATION \
|
|
-DDBUS_MACHINE_UUID_FILE=\""$(localstatedir)/lib/dbus/machine-id"\" \
|
|
$(NULL)
|
|
|
|
# if assertions are enabled, improve backtraces
|
|
AM_LDFLAGS = @R_DYNAMIC_LDFLAG@
|
|
|
|
bin_PROGRAMS = \
|
|
dbus-launch \
|
|
dbus-monitor \
|
|
dbus-send \
|
|
$(NULL)
|
|
|
|
if DBUS_UNIX
|
|
bin_PROGRAMS += \
|
|
dbus-cleanup-sockets \
|
|
dbus-uuidgen \
|
|
$(NULL)
|
|
endif
|
|
|
|
dbus_send_SOURCES= \
|
|
dbus-print-message.c \
|
|
dbus-print-message.h \
|
|
dbus-send.c
|
|
|
|
dbus_monitor_SOURCES= \
|
|
dbus-monitor.c \
|
|
dbus-print-message.c \
|
|
dbus-print-message.h
|
|
|
|
if DBUS_WIN
|
|
dbus_launch_SOURCES= \
|
|
dbus-launch-win.c \
|
|
dbus-launch.h
|
|
else
|
|
dbus_launch_SOURCES= \
|
|
dbus-launch.c \
|
|
dbus-launch-x11.c \
|
|
dbus-launch.h
|
|
endif
|
|
|
|
dbus_cleanup_sockets_SOURCES= \
|
|
dbus-cleanup-sockets.c
|
|
|
|
dbus_uuidgen_SOURCES= \
|
|
dbus-uuidgen.c
|
|
|
|
dbus_send_LDADD = \
|
|
$(top_builddir)/dbus/libdbus-1.la \
|
|
$(NULL)
|
|
|
|
dbus_monitor_LDADD = \
|
|
$(top_builddir)/dbus/libdbus-1.la \
|
|
$(NETWORK_libs) \
|
|
$(NULL)
|
|
|
|
dbus_uuidgen_LDADD = \
|
|
$(top_builddir)/dbus/libdbus-1.la \
|
|
$(NULL)
|
|
|
|
dbus_launch_LDADD = \
|
|
$(DBUS_X_LIBS) \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = run-with-tmp-session-bus.sh strtoll.c strtoull.c
|
|
CLEANFILES = \
|
|
run-with-tmp-session-bus.conf
|
|
|
|
# create the /var/lib/dbus directory for dbus-uuidgen
|
|
install-data-local:
|
|
$(MKDIR_P) $(DESTDIR)$(localstatedir)/lib/dbus
|
|
|
|
installcheck-local:
|
|
test -d $(DESTDIR)$(localstatedir)/lib/dbus
|