mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-29 04:00:34 +00:00
Don't restrict python file searching
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3643 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
88a32ce505
commit
d5ef2fd3e6
1 changed files with 4 additions and 16 deletions
20
Makefile
20
Makefile
|
|
@ -4,9 +4,6 @@ PYTHON := python$(PYVER)
|
|||
VERSION := $(shell $(PYTHON) setup.py --version)
|
||||
HOST=www.debian.org
|
||||
LCOPTS=-Ftext -Fhtml -Fgml -Fsql -Fcsv -Fxml -Fgxml -Fdot -v -r1 -C
|
||||
# all Python files in the source
|
||||
PYFILES = $(wildcard *.py) linkchecker linkcheck tests
|
||||
PYFLAKES:=python$(PYVER) /usr/bin/pyflakes
|
||||
PYTHONSVN := /home/calvin/src/python-svn
|
||||
# build dir for svn-buildpackage
|
||||
SVNBUILD:=/home/calvin/src/build-area
|
||||
|
|
@ -120,13 +117,11 @@ dist-stamp: changelog
|
|||
# So for other developers there is no need to execute this target.
|
||||
.PHONY: check
|
||||
check:
|
||||
py-verify $(PYFILES)
|
||||
py-find-nocoding $(PYFILES)
|
||||
py-verify
|
||||
py-find-nocoding
|
||||
check-nosvneolstyle
|
||||
check-pofiles
|
||||
py24-tabnanny $(PYFILES)
|
||||
|
||||
|
||||
py24-tabnanny
|
||||
|
||||
.PHONY: releasecheck
|
||||
releasecheck: check
|
||||
|
|
@ -149,7 +144,7 @@ test: localbuild
|
|||
|
||||
.PHONY: pyflakes
|
||||
pyflakes:
|
||||
$(PYFLAKES) $(PYFILES) | \
|
||||
pyflakes | \
|
||||
grep -v "redefinition of unused 'linkcheck'" | \
|
||||
grep -v "undefined name '_'" | \
|
||||
grep -v "undefined name '_n'"
|
||||
|
|
@ -166,13 +161,6 @@ diff:
|
|||
diff -u linkcheck/$${f}2.py $(PYTHONSVN)/Lib/$${f}.py | less; \
|
||||
done
|
||||
|
||||
# various python check scripts
|
||||
.PHONY: various
|
||||
various:
|
||||
py-find-nocoding $(PYFILES)
|
||||
py-find-nosvneolstyle $(PYFILES)
|
||||
|
||||
|
||||
.PHONY: changelog
|
||||
changelog:
|
||||
sftrack_changelog linkchecker calvin@users.sourceforge.net ChangeLog
|
||||
|
|
|
|||
Loading…
Reference in a new issue