Skip to content
Snippets Groups Projects
Makefile 394 B
Newer Older
all: codecheck test

	rm -rf build dist *.egg-info *.pyc
MININET = mininet/*.py
TEST = mininet/test/*.py
BIN = bin/mn bin/mnclean
PYSRC = $(MININET) $(TEST) $(BIN)
codecheck: $(PYSRC)
	pyflakes $(PYSRC)
	pylint --rcfile=.pylint $(PYSRC)
	pep8 --ignore=$(P8IGN) $(PYSRC)
	mininet/test/test_nets.py

install:
	python setup.py install