diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2011-06-15 14:30:13 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2011-07-29 11:49:18 +0100 |
commit | ee7244181eb2e55f7c359312d5f459745d1ce800 (patch) | |
tree | ac2bf2b9cd6ccb89448bec7ef2a1f1129e17e83d /tools/Makefile.am | |
parent | 7430df24165af844790ec206180a9977830eec58 (diff) | |
download | dbus-ee7244181eb2e55f7c359312d5f459745d1ce800.tar.gz |
tools: use AM_CPPFLAGS, and wrap its lines
Diffstat (limited to 'tools/Makefile.am')
-rw-r--r-- | tools/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index fabb7d73..4dfb1319 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -1,6 +1,12 @@ configdir=$(sysconfdir)/dbus-1 -INCLUDES=-I$(top_srcdir) $(DBUS_X_CFLAGS) -DDBUS_LOCALEDIR=\"@EXPANDED_DATADIR@/locale\" -DDBUS_COMPILATION -DDBUS_MACHINE_UUID_FILE=\""$(localstatedir)/lib/dbus/machine-id"\" +AM_CPPFLAGS = \ + -I$(top_srcdir) \ + $(DBUS_X_CFLAGS) \ + -DDBUS_LOCALEDIR=\"@EXPANDED_DATADIR@/locale\" \ + -DDBUS_COMPILATION \ + -DDBUS_MACHINE_UUID_FILE=\""$(localstatedir)/lib/dbus/machine-id"\" \ + $(NULL) # if assertions are enabled, improve backtraces AM_LDFLAGS = @R_DYNAMIC_LDFLAG@ |