blob: 6292143b7d4fecec91ef1359b9b2d30076505481 (
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
|
EXTRA_DIST = \
c-constants-generator.xsl \
c-interfaces-generator.xsl \
check-coding-style.mk \
check-c-style.sh \
check-misc.sh \
check-whitespace.sh \
doc-generator.xsl \
glib-client-marshaller-gen.py \
glib-errors-enum-body.xsl \
glib-errors-enum-header.xsl \
glib-interfaces-generator.xsl \
glib-interfaces-body-generator.xsl \
glib-ginterface-gen.py \
glib-gtypes-generator.py \
glib-signals-marshal-gen.py \
identity.xsl \
libglibcodegen.py \
make-release-mail.py \
telepathy.am \
xep.xsl
glib-client-marshaller-gen.py: libglibcodegen.py
@touch $@
glib-ginterface-gen.py: libglibcodegen.py
@touch $@
glib-gtypes-generator.py: libglibcodegen.py
@touch $@
glib-signals-marshal-gen.py: libglibcodegen.py
@touch $@
glib-interfaces-generator.xsl: c-interfaces-generator.xsl
@touch $@
glib-interfaces-body-generator.xsl: c-interfaces-generator.xsl
@touch $@
maintainer-update-from-xmpp.org:
set -e; \
uri=svn://svn.xmpp.org:7938/xmpp/trunk/extensions/xep.xsl; \
svn info $$uri; \
svn cat $$uri > xep.xsl.tmp
mv xep.xsl.tmp xep.xsl
TELEPATHY_GLIB_SRCDIR = $(top_srcdir)/../telepathy-glib
maintainer-update-from-telepathy-glib:
set -e && cd $(srcdir) && \
for x in $(EXTRA_DIST); do \
if test -f $(TELEPATHY_GLIB_SRCDIR)/tools/$$x; then \
cp $(TELEPATHY_GLIB_SRCDIR)/tools/$$x $$x; \
fi; \
done
|