# @(#) $Id$ (LBL)

PYLINT= pylint -sn -d C0103,C0302,R0902,R0903,R0911,R0912,R0913,R0914,R0915,W0511,W0603 "--dummy-variables-rgx=(_[a-z_][a-z0-9_]*)"

dist:
	python setup.py sdist

install: dist
	cp -i dist/pyacld*.gz /usr/ports/distfiles

lint: lint1 lint2

lint1:
	@${PYLINT} acld.py || true

lint2:
	@${PYLINT} mirror_nets.py || true

tags:
	ptags acld.py

clean:
	rm -rf MANIFEST build dist
