summaryrefslogtreecommitdiff
path: root/tp-glib-tools/telepathy.am
blob: 3dab3e7301a16c8936da542e8872f790d825d30a (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
## Useful top-level Makefile.am snippets for Telepathy projects.

dist-hook:
	chmod u+w ${distdir}/ChangeLog
	if test -d ${top_srcdir}/.git; then \
		git log --date=iso $(CHANGELOG_RANGE) > ${distdir}/ChangeLog; \
	fi

maintainer-upload-release: _maintainer-upload-release

_maintainer-upload-release-check:
	@case @VERSION@ in \
		(*.*.*.*) \
			echo "@VERSION@ is not a release" >&2; \
			exit 2; \
			;; \
	esac
	test -f @PACKAGE@-@VERSION@.tar.gz
	test -f @PACKAGE@-@VERSION@.tar.gz.asc
	gpg --verify @PACKAGE@-@VERSION@.tar.gz.asc

_maintainer-upload-release: _maintainer-upload-release-check
	rsync -vzP @PACKAGE@-@VERSION@.tar.gz telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/releases/@PACKAGE@/@PACKAGE@-@VERSION@.tar.gz
	rsync -vzP @PACKAGE@-@VERSION@.tar.gz.asc telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/releases/@PACKAGE@/@PACKAGE@-@VERSION@.tar.gz.asc

## vim:set ft=automake: