2002-11-22 Havoc Pennington <hp@redhat.com>
[platform/upstream/dbus.git] / dbus / Makefile.am
1
2 INCLUDES=-I$(top_srcdir) $(DBUS_CLIENT_CFLAGS) -DDBUS_COMPILATION
3
4 dbusincludedir=$(includedir)/dbus-1.0/dbus
5
6 lib_LTLIBRARIES=libdbus-1.la
7
8 dbusinclude_HEADERS=                            \
9         dbus.h                                  \
10         dbus-macros.h                           \
11         dbus-memory.h                           \
12         dbus-message.h
13
14 libdbus_1_la_SOURCES=                           \
15         dbus-memory.c                           \
16         dbus-message.c
17
18 ## this library is linked into both libdbus and the bus 
19 ## itself, but does not export any symbols from libdbus.
20 ## It contains utility functions not in the public API.
21
22 noinst_LTLIBRARIES=libdbus-convenience.la
23
24 libdbus_convenience_la_SOURCES=                 \
25         dbus-hash.c                             \
26         dbus-hash.h
27
28 libdbus_1_la_LIBADD=  $(DBUS_CLIENT_LIBS) libdbus-convenience.la
29 ## don't export symbols that start with "_" (we use this 
30 ## convention for internal symbols)
31 libdbus_1_la_LDFLAGS= -export-symbols-regex "^[[^_]].*"