]> git.0d.be Git - empathy.git/blob - libempathy/Makefile.am
Updated kn translation
[empathy.git] / libempathy / Makefile.am
1 include $(top_srcdir)/tools/flymake.mk
2
3 AM_CPPFLAGS =                                           \
4         $(ERROR_CFLAGS)                                 \
5         -I.                                             \
6         -I$(top_srcdir)                                 \
7         -I$(top_builddir)                               \
8         -DDATADIR=\""$(datadir)"\"                      \
9         -DLOCALEDIR=\""$(datadir)/locale"\"             \
10         -DG_LOG_DOMAIN=\"empathy\"                      \
11         -DGCR_API_SUBJECT_TO_CHANGE                     \
12         $(EMPATHY_CFLAGS)                               \
13         $(GEOCLUE_CFLAGS)                               \
14         $(GEOCODE_CFLAGS)                               \
15         $(NETWORK_MANAGER_CFLAGS)                       \
16         $(CONNMAN_CFLAGS)                               \
17         $(UDEV_CFLAGS)                                  \
18         $(GOA_CFLAGS)                                   \
19         $(UOA_CFLAGS)                                   \
20         $(WARN_CFLAGS)                                  \
21         $(DISABLE_DEPRECATED)
22
23 BUILT_SOURCES =                                         \
24         empathy-enum-types.h                            \
25         empathy-enum-types.c
26
27 libempathy_headers =                            \
28         action-chain-internal.h                 \
29         empathy-account-settings.h              \
30         empathy-auth-factory.h                  \
31         empathy-camera-monitor.h                \
32         empathy-chatroom-manager.h              \
33         empathy-chatroom.h                      \
34         empathy-client-factory.h \
35         empathy-connection-managers.h           \
36         empathy-connection-aggregator.h         \
37         empathy-contact-groups.h                \
38         empathy-contact.h                       \
39         empathy-debug.h                         \
40         empathy-ft-factory.h                    \
41         empathy-ft-handler.h                    \
42         empathy-gsettings.h                     \
43         empathy-presence-manager.h                              \
44         empathy-individual-manager.h            \
45         empathy-irc-network-manager.h           \
46         empathy-irc-network.h                   \
47         empathy-irc-server.h                    \
48         empathy-keyring.h                       \
49         empathy-location.h                      \
50         empathy-message.h                       \
51         empathy-pkg-kit.h               \
52         empathy-request-util.h                  \
53         empathy-sasl-mechanisms.h               \
54         empathy-server-sasl-handler.h           \
55         empathy-server-tls-handler.h            \
56         empathy-status-presets.h                \
57         empathy-time.h                          \
58         empathy-tls-verifier.h                  \
59         empathy-tp-chat.h                       \
60         empathy-types.h                         \
61         empathy-utils.h
62
63 libempathy_handwritten_source =                         \
64         $(libempathy_headers)                           \
65         action-chain.c                                  \
66         empathy-account-settings.c                      \
67         empathy-auth-factory.c                          \
68         empathy-camera-monitor.c                        \
69         empathy-chatroom-manager.c                      \
70         empathy-chatroom.c                              \
71         empathy-client-factory.c \
72         empathy-connection-managers.c                   \
73         empathy-connection-aggregator.c         \
74         empathy-contact-groups.c                        \
75         empathy-contact.c                               \
76         empathy-debug.c                                 \
77         empathy-ft-factory.c                            \
78         empathy-ft-handler.c                            \
79         empathy-presence-manager.c                                      \
80         empathy-individual-manager.c                    \
81         empathy-irc-network-manager.c                   \
82         empathy-irc-network.c                           \
83         empathy-irc-server.c                            \
84         empathy-keyring.c                               \
85         empathy-message.c                               \
86         empathy-pkg-kit.c               \
87         empathy-request-util.c                          \
88         empathy-sasl-mechanisms.c                       \
89         empathy-server-sasl-handler.c                   \
90         empathy-server-tls-handler.c                    \
91         empathy-status-presets.c                        \
92         empathy-time.c                                  \
93         empathy-tls-verifier.c                          \
94         empathy-tp-chat.c                               \
95         empathy-utils.c
96
97 # these are sources that depend on GOA
98 goa_sources = \
99         empathy-goa-auth-handler.c \
100         empathy-goa-auth-handler.h \
101         $(NULL)
102
103 # these are sources that depend on Ubuntu Online Accounts
104 uoa_sources = \
105         empathy-uoa-auth-handler.c \
106         empathy-uoa-auth-handler.h \
107         $(NULL)
108
109 pkglib_LTLIBRARIES = libempathy.la
110
111 # libempathy's API is not stable and will never be, so use -release to make the
112 # SONAME of the plugin library change with every Empathy release.
113 libempathy_la_LDFLAGS = \
114    -no-undefined \
115    -release $(VERSION) \
116    $(NULL)
117
118 libempathy_la_SOURCES = \
119         $(libempathy_handwritten_source) \
120         cheese-camera-device-monitor.c cheese-camera-device-monitor.h
121
122 libempathy_la_LIBADD =          \
123         $(top_builddir)/extensions/libemp-extensions.la \
124         $(GCR_LIBS) \
125         $(EMPATHY_LIBS) \
126         $(GEOCLUE_LIBS) \
127         $(GEOCODE_LIBS) \
128         $(NETWORK_MANAGER_LIBS) \
129         $(CONNMAN_LIBS) \
130         $(UDEV_LIBS) \
131         $(GOA_LIBS) \
132         $(UOA_LIBS) \
133         $(LIBM)
134
135 dtddir = $(datadir)/empathy
136 dtd_DATA =                                      \
137         empathy-status-presets.dtd              \
138         empathy-contact-groups.dtd              \
139         empathy-chatroom-manager.dtd            \
140         empathy-irc-networks.dtd
141
142 ircnetworksdir = $(datadir)/empathy
143 ircnetworks_DATA =              \
144         irc-networks.xml
145
146 EXTRA_DIST =                    \
147         $(dtd_DATA)             \
148         $(ircnetworks_DATA)
149
150 CLEANFILES =                            \
151         $(BUILT_SOURCES)                \
152         stamp-empathy-enum-types.h
153
154 if HAVE_GOA
155 libempathy_la_SOURCES += $(goa_sources)
156 else
157 EXTRA_DIST += $(goa_sources)
158 endif
159
160 if HAVE_UOA
161 libempathy_la_SOURCES += $(uoa_sources)
162 else
163 EXTRA_DIST += $(uoa_sources)
164 endif
165
166 # do not distribute generated files
167 nodist_libempathy_la_SOURCES =\
168         $(BUILT_SOURCES)
169
170 check_c_sources = \
171     $(libempathy_handwritten_source) \
172     $(goa_sources) \
173     $(uoa_sources) \
174     $(NULL)
175
176 include $(top_srcdir)/tools/check-coding-style.mk
177 check-local: check-coding-style
178
179 empathy-enum-types.h: stamp-empathy-enum-types.h
180         $(AM_V_GEN)true
181 stamp-empathy-enum-types.h: $(libempathy_headers) Makefile
182         $(AM_V_GEN)(cd $(srcdir) \
183         && glib-mkenums \
184                         --fhead "#ifndef __LIBEMPATHY_ENUM_TYPES_H__\n" \
185                         --fhead "#define __LIBEMPATHY_ENUM_TYPES_H__ 1\n\n" \
186                         --fhead "#include <glib-object.h>\n\n" \
187                         --fhead "G_BEGIN_DECLS\n\n" \
188                         --ftail "G_END_DECLS\n\n" \
189                         --ftail "#endif /* __LIBEMPATHY_ENUM_TYPES_H__ */\n" \
190                         --fprod "#include <libempathy/@filename@>\n" \
191                         --eprod "#define EMPATHY_TYPE_@ENUMSHORT@ @enum_name@_get_type()\n" \
192                         --eprod "GType @enum_name@_get_type (void);\n" \
193                 $(libempathy_headers) ) > xgen-gth \
194         && (cmp -s xgen-gth empathy-enum-type.h || cp xgen-gth empathy-enum-types.h) \
195         && rm -f xgen-gth \
196         && echo timestamp > $(@F)
197
198 empathy-enum-types.c: $(libempathy_headers) Makefile
199         $(AM_V_GEN)(cd $(srcdir) \
200         && glib-mkenums \
201                         --fhead "#include <config.h>\n" \
202                         --fhead "#include <glib-object.h>\n" \
203                         --fhead "#include \"empathy-enum-types.h\"\n\n" \
204                         --fprod "\n/* enumerations from \"@filename@\" */" \
205                         --vhead "static const G@Type@Value _@enum_name@_values[] = {" \
206                         --vprod "  { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
207                         --vtail "  { 0, NULL, NULL }\n};\n\n" \
208                         --vtail "GType\n@enum_name@_get_type (void)\n{\n" \
209                         --vtail "  static GType type = 0;\n\n" \
210                         --vtail "  if (!type)\n" \
211                         --vtail "    type = g_@type@_register_static (\"@EnumName@\", _@enum_name@_values);\n\n" \
212                         --vtail "  return type;\n}\n\n" \
213                 $(libempathy_headers) ) > xgen-gtc \
214         && cp xgen-gtc $(@F) \
215         && rm -f xgen-gtc