2 INCLUDES=-I$(top_srcdir) $(DBUS_CLIENT_CFLAGS) -DDBUS_COMPILATION
4 dbusincludedir=$(includedir)/dbus-1.0/dbus
6 lib_LTLIBRARIES=libdbus-1.la
15 dbus-message-handler.h \
21 libdbus_1_la_SOURCES= \
25 dbus-connection-internal.h \
29 dbus-message-handler.c \
30 dbus-message-internal.h \
34 dbus-server-protected.h \
44 dbus-transport-protected.h \
45 dbus-transport-unix.c \
46 dbus-transport-unix.h \
51 ## this library is linked into both libdbus and the bus
52 ## itself, but does not export any symbols from libdbus.
53 ## i.e. the point is to contain symbols that we don't
54 ## want the shared lib to export, but we do want the
55 ## message bus to be able to use.
57 noinst_LTLIBRARIES=libdbus-convenience.la
59 libdbus_convenience_la_SOURCES= \
75 libdbus_1_la_LIBADD= $(DBUS_CLIENT_LIBS) libdbus-convenience.la
76 ## don't export symbols that start with "_" (we use this
77 ## convention for internal symbols)
78 libdbus_1_la_LDFLAGS= -export-symbols-regex "^[^_].*"
80 ## note that TESTS has special meaning (stuff to use in make check)
81 ## so if adding tests not to be run in make check, don't add them to
89 ## we use noinst_PROGRAMS not check_PROGRAMS so that we build
90 ## even when not doing "make check"
91 noinst_PROGRAMS=$(TESTS)
96 dbus_test_LDADD= $(DBUS_CLIENT_LIBS) libdbus-convenience.la libdbus-1.la