add more scripts to the syntaxcheck target, and rename the target to check

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3600 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2007-11-14 17:56:56 +00:00
parent 058627fb66
commit dc11717bce

View file

@ -116,12 +116,17 @@ dist-stamp:
$(MAKE) dist
touch $@
.PHONY: syntaxcheck
syntaxcheck:
py-verify
.PHONY: check
check:
py-verify $(PYFILES)
py-find-nocoding $(PYFILES)
check-nosvneolstyle
python2.4 /usr/lib/python2.4/tabnanny.py $(PYFILES)
.PHONY: releasecheck
releasecheck: syntaxcheck
releasecheck: check
@if egrep -i "xx\.|xxxx|\.xx" ChangeLog > /dev/null; then \
echo "Could not release: edit ChangeLog release date"; false; \
fi