summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: a80b7ae9b86aead0c4f852b38577fb4b122ceb5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
BUILT_SOURCES = \
    gabble-media-session-enumtypes.h \
    gabble-media-session-enumtypes.c \
    gabble-signals-marshal.h \
    gabble-signals-marshal.c \
    gabble-signals-marshal.list

CLEANFILES = $(BUILT_SOURCES)

libexec_PROGRAMS=telepathy-gabble
noinst_PROGRAMS = write-mgr-file

if HAVE_DBUS_TUBE
dbus_tube_sources = \
    tube-dbus.h \
    tube-dbus.c
endif

# These are the bits we wrote, so we can be really strict about coding style
libgabble_convenience_la_our_sources = \
    $(dbus_tube_sources) \
    base64.h \
    base64.c \
    capabilities.h \
    capabilities.c \
    caps-hash.h \
    caps-hash.c \
    bytestream-factory.h \
    bytestream-factory.c \
    bytestream-ibb.h \
    bytestream-ibb.c \
    bytestream-iface.h \
    bytestream-iface.c \
    bytestream-muc.h \
    bytestream-muc.c \
    conn-aliasing.h \
    conn-aliasing.c \
    conn-avatars.h \
    conn-avatars.c \
    conn-olpc.h \
    conn-olpc.c \
    conn-presence.h \
    conn-presence.c \
    debug.h \
    debug.c \
    disco.h \
    disco.c \
    gabble.c \
    gabble.h \
    gabble-error.c \
    error.h \
    connection-manager.h \
    connection-manager.c \
    connection.h \
    connection.c \
    im-channel.h \
    gabble-im-channel.c \
    muc-channel.h \
    gabble-muc-channel.c \
    media-channel.h \
    gabble-media-channel.c \
    media-session.h \
    gabble-media-session.c \
    media-stream.h \
    gabble-media-stream.c \
    gabble-register.c \
    register.h \
    roster-channel.h \
    gabble-roster-channel.c \
    roomlist-channel.h \
    gabble-roomlist-channel.c \
    types.h \
    im-factory.h \
    im-factory.c \
    media-factory.h \
    media-factory.c \
    muc-factory.h \
    muc-factory.c \
    namespaces.h \
    pubsub.h \
    pubsub.c \
    presence.h \
    presence.c \
    presence-cache.h \
    presence-cache.c \
    request-pipeline.h \
    request-pipeline.c \
    roster.h \
    roster.c \
    text-mixin.h \
    text-mixin.c \
    tube-iface.h \
    tube-iface.c \
    tubes-channel.h \
    tubes-channel.c \
    private-tubes-factory.h \
    private-tubes-factory.c \
    tube-stream.h \
    tube-stream.c \
    util.h \
    util.c \
    vcard-manager.h \
    vcard-manager.c

# we don't want to subject third-party source to whitespace removal -
# it's more useful to keep it a verbatim copy
libgabble_convenience_la_SOURCES = \
    libmd5-rfc/md5.c \
    libmd5-rfc/md5.h \
    sha1/sha1.h \
    sha1/sha1.c \
    $(libgabble_convenience_la_our_sources)

libgabble_convenience_la_LIBADD = \
   $(top_builddir)/extensions/libgabble-extensions.la

nodist_libgabble_convenience_la_SOURCES = \
    $(BUILT_SOURCES)

write_mgr_file_SOURCES = write-mgr-file.c

write_mgr_file_LDADD = libgabble-convenience.la $(ALL_LIBS)

telepathy_gabble_SOURCES = \
    main.c

check_c_sources = \
    $(telepathy_gabble_SOURCES) \
    $(libgabble_convenience_la_our_sources) \
    $(telepathy_gabble_SOURCES) \
    $(write_mgr_file_SOURCES)
include $(top_srcdir)/tools/check-coding-style.mk
check-local: check-coding-style

telepathy_gabble_LDADD = libgabble-convenience.la $(ALL_LIBS)

noinst_LTLIBRARIES = libgabble-convenience.la

AM_CFLAGS = $(ERROR_CFLAGS) -I$(top_srcdir) -I$(top_builddir) \
	    @DBUS_CFLAGS@ @GLIB_CFLAGS@ @LOUDMOUTH_CFLAGS@ \
	    @HANDLE_LEAK_DEBUG_CFLAGS@ @COVERAGE_CFLAGS@ @TP_GLIB_CFLAGS@
ALL_LIBS =  @DBUS_LIBS@ @GLIB_LIBS@ @LOUDMOUTH_LIBS@ @TP_GLIB_LIBS@


gabble-signals-marshal.list: $(libgabble_convenience_la_SOURCES) Makefile.am
	( cd $(srcdir) && \
	sed -n -e 's/.*gabble_marshal_\([[:upper:][:digit:]]*__[[:upper:][:digit:]_]*\).*/\1/p' \
	$(libgabble_convenience_la_SOURCES) ) \
	| sed -e 's/__/:/' -e 'y/_/,/' | sort -u > $@.tmp
	if cmp -s $@.tmp $@; then \
		rm $@.tmp; \
	else \
		mv $@.tmp $@; \
	fi

%-signals-marshal.h: %-signals-marshal.list Makefile.am
	glib-genmarshal --header --prefix=$(subst -,_,$*)_marshal $< > $@

%-signals-marshal.c: %-signals-marshal.list Makefile.am
	{ echo '#include "$*-signals-marshal.h"' && \
	glib-genmarshal --body --prefix=$(subst -,_,$*)_marshal $< ; \
	} > $@

# rules for making the glib enum objects
%-enumtypes.h: %.h Makefile.in
	glib-mkenums \
	--fhead "#ifndef __$(shell echo $* | tr [:lower:]- [:upper:]_)_ENUM_TYPES_H__\n#define __$(shell echo $* | tr [:lower:]- [:upper:]_)_ENUM_TYPES_H__\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \
	--fprod "/* enumerations from \"@filename@\" */\n" \
	--vhead "GType @enum_name@_get_type (void);\n#define $(shell echo $* | tr [:lower:]- [:upper:]_ | sed 's/_.*//')_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n"         \
	--ftail "G_END_DECLS\n\n#endif /* __$(shell echo $* | tr [:lower:]- [:upper:]_)_ENUM_TYPES_H__ */" \
	$< > $@

%-enumtypes.c: %.h Makefile.in
	glib-mkenums \
	--fhead "#include <$*.h>\n#include <$*-enumtypes.h>" \
	--fprod "\n/* enumerations from \"@filename@\" */" \
	--vhead "GType\n@enum_name@_get_type (void)\n{\n  static GType etype = 0;\n  if (etype == 0) {\n    static const G@Type@Value values[] = {"     \
	--vprod "      { @VALUENAME@, \"@VALUENAME@\", \"@VALUENAME@\" }," \
	--vtail "      { 0, NULL, NULL }\n    };\n    etype = g_@type@_register_static (\"@EnumName@\", values);\n  }\n  return etype;\n}\n" \
	$< > $@