diff options
author | Alon Bar-Lev <[email protected]> | 2016-09-29 07:30:57 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-09-30 12:46:28 +0000 |
commit | 68fb8371a1dd5f4e05e50b1733f9996d139cbf38 (patch) | |
tree | a869f9c2bcbbdf0bfc4119d4d064b5be1b2c5fdc | |
parent | python: Make generated 'setup.py' executable. (diff) | |
download | gpgme-68fb8371a1dd5f4e05e50b1733f9996d139cbf38.tar.gz gpgme-68fb8371a1dd5f4e05e50b1733f9996d139cbf38.zip |
python: Add 'prepare' target.
* lang/python/Makefile.am: Add 'prepare' target.
--
This enables preparing the package using autoconf then build using
distutils as separate stage.
Signed-off-by: Alon Bar-Lev <[email protected]>
-rw-r--r-- | lang/python/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lang/python/Makefile.am b/lang/python/Makefile.am index 1d7aee8b..ea37da97 100644 --- a/lang/python/Makefile.am +++ b/lang/python/Makefile.am @@ -65,6 +65,9 @@ dist/pyme3-$(VERSION).tar.gz dist/pyme3-$(VERSION).tar.gz.asc: copystamp $(PYTHON) setup.py sdist --verbose gpg2 --detach-sign --armor dist/pyme3-$(VERSION).tar.gz +.PHONY: prepare +prepare: copystamp + .PHONY: sdist sdist: dist/pyme3-$(VERSION).tar.gz dist/pyme3-$(VERSION).tar.gz.asc |