mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-05 07:20:58 +00:00
Make python binary configurable and execute filescheck on release.
This commit is contained in:
parent
eabe807411
commit
eb98c27ed0
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
|
@ -1,6 +1,6 @@
|
|||
# This Makefile is only used by developers.
|
||||
PYVER:=2.7
|
||||
PYTHON:=python$(PYVER)
|
||||
PYTHON?=python$(PYVER)
|
||||
VERSION:=$(shell $(PYTHON) setup.py --version)
|
||||
PLATFORM:=$(shell $(PYTHON) -c "from distutils.util import get_platform; print get_platform()")
|
||||
FILESCHECK_URL:=http://localhost/~calvin/
|
||||
|
|
@ -86,7 +86,7 @@ upload:
|
|||
|
||||
|
||||
.PHONY: release
|
||||
release: distclean releasecheck dist-stamp sign_distfiles upload
|
||||
release: distclean releasecheck filescheck clean dist-stamp sign_distfiles upload
|
||||
git tag v$(VERSION)
|
||||
@echo "Updating LinkChecker Homepage..."
|
||||
$(MAKE) -C doc man
|
||||
|
|
|
|||
Loading…
Reference in a new issue