summaryrefslogtreecommitdiff
path: root/libmcclient/Makefile.am
blob: 7a0859633fa27d56a819456faa591d32e5f29b6c (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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
INCLUDES = \
	$(TELEPATHY_CFLAGS) \
	$(DBUS_CFLAGS) \
	$(GLIB_CFLAGS) \
	-I$(top_srcdir) \
	-I$(top_builddir) \
	-DLIBDIR="@libdir@" -DLIBVERSION="0" \
	-DG_LOG_DOMAIN=\"mc-client\"

AM_CFLAGS = $(ERROR_CFLAGS)

BUILT_SOURCES = \
	_gen/libmcclient.xml \
	mc-signals-marshal.c \
	mc-signals-marshal.h \
	$(nodist_libmcclient_la_SOURCES)

CLEANFILES = $(BUILT_SOURCES)

if ENABLE_MCD_PLUGINS
libmcclient_includedir = $(includedir)/libmcclient
lib_LTLIBRARIES = libmcclient.la
libmcclient_include_HEADERS = $(headers)
genincludedir = $(libmcclient_includedir)/_gen
nodist_geninclude_HEADERS = $(gen_headers)
else
noinst_LTLIBRARIES = libmcclient.la
endif

libmcclient_la_CFLAGS = $(GLIB_CFLAGS)
libmcclient_la_SOURCES = \
	dbus-api.c \
	mc-account.c \
	mc-account-avatar.c \
	mc-account-compat.c \
	mc-account-conditions.c \
	mc-account-manager.c \
	mc-account-priv.h \
	mc-account-request.c \
	mc-account-stats.c \
	mc-dispatch-operation.c \
	mc-errors.c \
	mc-profile.c \
	mc-signals-marshal.c \
	$(headers)

headers = \
	dbus-api.h \
	mc-account.h \
	mc-enums.h \
	mc-errors.h \
	mc-gtypes.h \
	mc-interfaces.h \
	mc-profile.h \
	mc-account-manager.h \
	mc-dispatch-operation.h \
	mc-signals-marshal.h \
	mc-svc-client.h

gen_headers = \
	_gen/mc-quark.h \
	_gen/cli-account.h \
	_gen/cli-account-manager.h \
	_gen/cli-dispatch-operation.h \
	_gen/svc-client.h \
	_gen/enums.h \
	_gen/interfaces.h \
	_gen/gtypes.h

nodist_libmcclient_la_SOURCES = \
	_gen/mc-quark.c \
	_gen/cli-account-body.h \
	_gen/cli-account-manager-body.h \
	_gen/cli-dispatch-operation-body.h \
	_gen/svc-client.c \
	_gen/gtypes-body.h \
	_gen/interfaces-body.h \
	_gen/register-dbus-glib-marshallers-body.h \
	_gen/signals-marshal.c \
	_gen/signals-marshal.h \
	_gen/signals-marshal.list \
	$(gen_headers)

libmcclient_la_LIBADD = \
	$(TELEPATHY_LIBS) \
	$(DBUS_LIBS) \
	$(GLIB_LIBS)

if ENABLE_MCD_PLUGINS
libmcclient_la_LDFLAGS = \
	-export-symbols-regex "^(mc_)|(mission_control_)"

if ENABLE_MC_CLIENT_SO6
# the redundant quoting here is to prevent the libtool command line from
# looking like an error message in an oddly named file
libmcclient_la_LDFLAGS += -version-info "10":"0":"4"
else
libmcclient_la_LDFLAGS += -release $(VERSION)
endif # ! ENABLE_MC_CLIENT_SO6
endif # ENABLE_MCD_PLUGINS

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

%-marshal.c: %-marshal.list Makefile.am
	glib-genmarshal --body --prefix=$(subst -,_,$*)_marshal $< > $*-marshal.c


EXTRA_DIST = \
	$(libmcclient_include_DATA) \
	libmcclient.xml \
	account.xml \
	account-manager.xml \
	client.xml \
	dispatch-operation.xml \
	mc-quark.list \
	mc-signals-marshal.list

# ---- telepathy-glib-style code generation ----

tools_dir = $(top_srcdir)/tools

_gen/%-quark.c _gen/%-quark.h: %-quark.list \
	$(tools_dir)/gquark-gen.py Makefile.am
	$(mkdir_p) _gen
	$(PYTHON) $(tools_dir)/gquark-gen.py \
		--quark-prefix=MC_QUARK \
		$< $*_quark _gen/$*-quark

_gen/libmcclient.xml: libmcclient.xml $(wildcard $(top_srcdir)/xml/*.xml)
	$(mkdir_p) _gen
	$(XSLTPROC) $(XSLTPROCFLAGS) --xinclude $(tools_dir)/identity.xsl \
		$< > $@

# Generated files which can be done for all "classes" at once

_gen/gtypes.h _gen/gtypes-body.h: _gen/libmcclient.xml \
	$(top_srcdir)/tools/glib-gtypes-generator.py
	$(PYTHON) $(top_srcdir)/tools/glib-gtypes-generator.py \
		$< _gen/gtypes mc

_gen/signals-marshal.list: _gen/libmcclient.xml \
	$(tools_dir)/glib-signals-marshal-gen.py
	$(PYTHON) $(tools_dir)/glib-signals-marshal-gen.py $< > $@

_gen/signals-marshal.h: _gen/signals-marshal.list
	$(GLIB_GENMARSHAL) --header --prefix=_mc_ext_marshal $< > $@

_gen/signals-marshal.c: _gen/signals-marshal.list
	$(GLIB_GENMARSHAL) --body --prefix=_mc_ext_marshal $< > $@

_gen/register-dbus-glib-marshallers-body.h: _gen/libmcclient.xml \
	$(tools_dir)/glib-client-marshaller-gen.py
	$(PYTHON) $(tools_dir)/glib-client-marshaller-gen.py $< \
		_mc_ext > $@

_gen/enums.h: _gen/libmcclient.xml $(tools_dir)/c-constants-generator.xsl
	$(XSLTPROC) $(XSLTPROCFLAGS) \
		--stringparam mixed-case-prefix mc \
		$(tools_dir)/c-constants-generator.xsl \
		$< > $@

_gen/interfaces.h: _gen/libmcclient.xml \
	$(tools_dir)/glib-interfaces-generator.xsl \
	$(tools_dir)/c-interfaces-generator.xsl
	$(XSLTPROC) $(XSLTPROCFLAGS) \
		--stringparam mixed-case-prefix mc \
		$(tools_dir)/glib-interfaces-generator.xsl \
		$< > $@

_gen/interfaces-body.h: _gen/libmcclient.xml \
	$(tools_dir)/glib-interfaces-body-generator.xsl \
	$(tools_dir)/c-interfaces-generator.xsl
	$(XSLTPROC) $(XSLTPROCFLAGS) \
		--stringparam mixed-case-prefix mc \
		$(tools_dir)/glib-interfaces-body-generator.xsl \
		$< > $@


# Generated files which must be generated per "class".
# (Currently the only "class" is nmc4, but the new API will need "classes"
# like account, account-manager, ...)

_gen/%.xml: %.xml $(wildcard $(top_srcdir)/xml/*.xml)
	$(mkdir_p) _gen
	$(XSLTPROC) $(XSLTPROCFLAGS) --xinclude $(tools_dir)/identity.xsl \
		$< > $@

_gen/cli-%-body.h _gen/cli-%.h: _gen/%.xml \
	$(tools_dir)/glib-client-gen.py Makefile.am
	$(PYTHON) $(tools_dir)/glib-client-gen.py \
		--group=`echo $* | tr x- x_` \
		--iface-quark-prefix=MC_IFACE_QUARK \
		--tp-proxy-api=0.7.6 \
		$< Mc_Cli _gen/cli-$*

_gen/svc-%.c _gen/svc-%.h: _gen/%.xml \
	$(tools_dir)/glib-ginterface-gen.py Makefile.am
	$(PYTHON) $(tools_dir)/glib-ginterface-gen.py \
		--filename=_gen/svc-$* \
		--signal-marshal-prefix=_mc_ext \
		--include='<telepathy-glib/dbus.h>' \
		--include='"_gen/signals-marshal.h"' \
		--not-implemented-func='tp_dbus_g_method_return_not_implemented' \
		--allow-unstable \
		$< Mc_Svc_

include ../tools/header-checks.am

check-local: header-decl-macro-check