diff options
author | Kay Sievers <kay@vrfy.org> | 2015-06-22 23:08:55 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2015-06-22 23:08:55 +0200 |
commit | 6f58d70e31c5a8b63402b865b4030976348659d0 (patch) | |
tree | 3fcfef9adaf6bc3fee48ea1d88f6082181060fde | |
parent | 78a68c34546b8ba9a9e6770e97905eb97c1961d1 (diff) |
build-sys: add custom "make git-tar" target
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 936e4edd81..ef03730b03 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6282,6 +6282,10 @@ hwdb-update: git-tag: git tag -s "v$(VERSION)" -m "systemd $(VERSION)" +.PHONY: git-tar +git-tar: + git archive --format=tar --prefix=systemd-$(VERSION)/ v$(VERSION) | xz > systemd-$(VERSION).tar.xz + www_target = www.freedesktop.org:/srv/www.freedesktop.org/www/software/systemd .PHONY: upload upload: all check dist |