Make the "upload-release" target be usable in parallel

* Makefile.am: Re-arrange the upload-release target to make it
	usable with 'make upload-release -jN'.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
Dodji Seketeli 2018-03-06 18:08:22 +01:00
parent 409438409d
commit 5affd4da16
1 changed files with 11 additions and 2 deletions

View File

@ -69,7 +69,16 @@ upload-release-only:
tarball: $(TARBALL)
upload-release: tag-release
$(MAKE) tarball upload-release-only
upload-release: tarball tag-release upload-release-only
release: upload-release
upload-release: tarball-and-tag-and-upload
tarball-and-tag-and-upload: tarball-and-all
tarball-and-all: tag-and-all
$(MAKE) tarball
tag-and-all: distcheck
$(MAKE) tag-release-only