blob: 89dbeace640ed569349ff2c66f45bb534f8f8228 (
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
|
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 \
genginterface.py \
glib-ginterface-gen.py \
libglibcodegen.py \
ls-interfaces.xsl \
make-all-async.xsl \
spec-to-introspect.xsl \
update-spec-gen-am.sh
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
|