2005-01-27 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 if HAVE_GLIB
5 DBUS_GLIB_BUILT_INCLUDES=                       \
6         dbus-glib-error-enum.h
7
8 GLIB_INCLUDES=                                  \
9         dbus-glib.h                             \
10         dbus-glib-lowlevel.h                    \
11         $(DBUS_GLIB_BUILT_INCLUDES)
12
13 dbus-glib-error-enum.h: dbus-protocol.h make-dbus-glib-error-enum.sh
14         $(srcdir)/make-dbus-glib-error-enum.sh dbus-protocol.h $@
15
16 endif
17
18 dbusincludedir=$(includedir)/dbus-1.0/dbus
19 dbusarchincludedir=$(libdir)/dbus-1.0/include/dbus
20
21 lib_LTLIBRARIES=libdbus-1.la
22
23 dbusinclude_HEADERS=                            \
24         dbus.h                                  \
25         dbus-address.h                          \
26         dbus-bus.h                              \
27         dbus-connection.h                       \
28         dbus-errors.h                           \
29         dbus-macros.h                           \
30         dbus-memory.h                           \
31         dbus-message.h                          \
32         dbus-pending-call.h                     \
33         dbus-protocol.h                         \
34         dbus-server.h                           \
35         dbus-shared.h                           \
36         dbus-threads.h                          \
37         dbus-types.h                            \
38         $(GLIB_INCLUDES)
39
40 dbusarchinclude_HEADERS=                        \
41         dbus-arch-deps.h
42
43 ### source code that goes in the installed client library
44 ### and is specific to library functionality
45 DBUS_LIB_SOURCES=                               \
46         dbus-address.c                          \
47         dbus-auth.c                             \
48         dbus-auth.h                             \
49         dbus-auth-script.c                      \
50         dbus-auth-script.h                      \
51         dbus-bus.c                              \
52         dbus-connection.c                       \
53         dbus-connection-internal.h              \
54         dbus-errors.c                           \
55         dbus-keyring.c                          \
56         dbus-keyring.h                          \
57         dbus-marshal-header.c                   \
58         dbus-marshal-header.h                   \
59         dbus-marshal-byteswap.c                 \
60         dbus-marshal-byteswap.h                 \
61         dbus-marshal-recursive.c                \
62         dbus-marshal-recursive.h                \
63         dbus-marshal-validate.c                 \
64         dbus-marshal-validate.h                 \
65         dbus-message.c                          \
66         dbus-message-internal.h                 \
67         dbus-message-private.h                  \
68         dbus-object-tree.c                      \
69         dbus-object-tree.h                      \
70         dbus-pending-call.c                     \
71         dbus-resources.c                        \
72         dbus-resources.h                        \
73         dbus-server.c                           \
74         dbus-server-debug-pipe.c                \
75         dbus-server-debug-pipe.h                \
76         dbus-server-protected.h                 \
77         dbus-server-unix.c                      \
78         dbus-server-unix.h                      \
79         dbus-sha.c                              \
80         dbus-sha.h                              \
81         dbus-timeout.c                          \
82         dbus-timeout.h                          \
83         dbus-threads.c                          \
84         dbus-transport.c                        \
85         dbus-transport.h                        \
86         dbus-transport-protected.h              \
87         dbus-transport-unix.c                   \
88         dbus-transport-unix.h                   \
89         dbus-watch.c                            \
90         dbus-watch.h
91
92 ##      dbus-md5.c                              \
93 ##      dbus-md5.h                              \
94
95 ### source code that goes in the installed client library
96 ### AND is generic utility functionality used by the 
97 ### daemon or test programs (all symbols in here should 
98 ### be underscore-prefixed)
99 DBUS_SHARED_SOURCES=                            \
100         dbus-dataslot.c                         \
101         dbus-dataslot.h                         \
102         dbus-hash.c                             \
103         dbus-hash.h                             \
104         dbus-internals.c                        \
105         dbus-internals.h                        \
106         dbus-list.c                             \
107         dbus-list.h                             \
108         dbus-marshal-basic.c                    \
109         dbus-marshal-basic.h                    \
110         dbus-memory.c                           \
111         dbus-mempool.c                          \
112         dbus-mempool.h                          \
113         dbus-string.c                           \
114         dbus-string.h                           \
115         dbus-string-private.h                   \
116         dbus-sysdeps.c                          \
117         dbus-sysdeps.h                          \
118         dbus-userdb.c                           \
119         dbus-userdb.h
120
121 ### source code that is generic utility functionality used
122 ### by the bus daemon or test apps, but is NOT included
123 ### in the D-BUS client library (all symbols in here 
124 ### should be underscore-prefixed but don't really need 
125 ### to be unless they move to DBUS_SHARED_SOURCES later)
126 DBUS_UTIL_SOURCES=                              \
127         dbus-auth-util.c                        \
128         dbus-mainloop.c                         \
129         dbus-mainloop.h                         \
130         dbus-marshal-byteswap-util.c            \
131         dbus-marshal-recursive-util.c           \
132         dbus-marshal-validate-util.c            \
133         dbus-message-factory.c                  \
134         dbus-message-factory.h                  \
135         dbus-message-util.c                     \
136         dbus-spawn.c                            \
137         dbus-spawn.h                            \
138         dbus-string-util.c                      \
139         dbus-sysdeps-util.c                     \
140         dbus-test.c                             \
141         dbus-test.h                             \
142         dbus-userdb-util.c
143
144 libdbus_1_la_SOURCES=                           \
145         $(DBUS_LIB_SOURCES)                     \
146         $(DBUS_SHARED_SOURCES)
147
148 libdbus_convenience_la_SOURCES=                 \
149         $(DBUS_LIB_SOURCES)                     \
150         $(DBUS_SHARED_SOURCES)                  \
151         $(DBUS_UTIL_SOURCES)
152
153 BUILT_SOURCES=$(dbusarchinclude_HEADERS) $(DBUS_GLIB_BUILT_INCLUDES)
154 EXTRA_DIST=dbus-arch-deps.h.in make-dbus-glib-error-enum.sh
155 CLEANFILES=$(DBUS_GLIB_BUILT_INCLUDES)
156
157 ## this library is the same as libdbus, but exports all the symbols
158 ## and is only used for static linking within the dbus package.
159 noinst_LTLIBRARIES=libdbus-convenience.la
160
161 libdbus_1_la_LIBADD= $(DBUS_CLIENT_LIBS)
162 ## don't export symbols that start with "_" (we use this 
163 ## convention for internal symbols)
164 libdbus_1_la_LDFLAGS= -export-symbols-regex "^[^_].*"
165
166 ## note that TESTS has special meaning (stuff to use in make check)
167 ## so if adding tests not to be run in make check, don't add them to 
168 ## TESTS
169 if DBUS_BUILD_TESTS
170 TESTS_ENVIRONMENT=DBUS_TEST_DATA=$(top_builddir)/test/data DBUS_TEST_HOMEDIR=$(top_builddir)/dbus
171 TESTS=dbus-test
172 else
173 TESTS=
174 endif
175
176 ## we use noinst_PROGRAMS not check_PROGRAMS so that we build 
177 ## even when not doing "make check"
178 noinst_PROGRAMS=$(TESTS)
179
180 dbus_test_SOURCES=                              \
181         dbus-test-main.c
182
183 dbus_test_LDADD=libdbus-convenience.la
184
185 ## mop up the gcov files
186 clean-local:
187         /bin/rm *.bb *.bbg *.da *.gcov .libs/*.da .libs/*.bbg || true