blob: 46c4ffd7bc88b05c6addafeeb6d16c2e14173e31 (
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
|
EXTRA_DIST = \
c-constants-generator.xsl \
c-interfaces-generator.xsl \
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
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 $@
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
|