]> git.0d.be Git - empathy.git/blob - tools/telepathy.am
Update Simplified Chinese help translation.
[empathy.git] / tools / telepathy.am
1 ## Useful top-level Makefile.am snippets for Telepathy projects.
2
3 dist-hook:
4         chmod u+w ${distdir}/ChangeLog
5         if test -d ${top_srcdir}/.git; then \
6                 git log --stat > ${distdir}/ChangeLog || \
7                 git log > ${distdir}/ChangeLog; \
8         fi
9
10 maintainer-upload-release: _maintainer-upload-release
11
12 _maintainer-upload-release-check:
13         @case @VERSION@ in \
14                 (*.*.*.*) \
15                         echo "@VERSION@ is not a release" >&2; \
16                         exit 2; \
17                         ;; \
18         esac
19         test -f @PACKAGE@-@VERSION@.tar.gz
20         test -f @PACKAGE@-@VERSION@.tar.gz.asc
21         gpg --verify @PACKAGE@-@VERSION@.tar.gz.asc
22
23 _maintainer-upload-release: _maintainer-upload-release-check
24         rsync -vzP @PACKAGE@-@VERSION@.tar.gz telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/releases/@PACKAGE@/@PACKAGE@-@VERSION@.tar.gz
25         rsync -vzP @PACKAGE@-@VERSION@.tar.gz.asc telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/releases/@PACKAGE@/@PACKAGE@-@VERSION@.tar.gz.asc
26
27 ## vim:set ft=automake: