Newer
Older
rm -rf build dist *.egg-info *.pyc
MININET = mininet/*.py
TEST = mininet/test/*.py
PYSRC = $(MININET) $(TEST) $(EXAMPLES) $(BIN)
codecheck: $(PYSRC)
pyflakes $(PYSRC)
pylint --rcfile=.pylint $(PYSRC)
pep8 --repeat --ignore=$(P8IGN) $(PYSRC)
test: $(MININET) $(TEST)