Fixed the --wep-* and --wpa-* options (Gentoo#281099).
[cnetworkmanager.git] / Makefile
blob5900426ce266eb5c160ac87fc397cafa6c6c4f67
1 SETUP=python setup.py
2 all:
3 $(SETUP) build
5 check: check-nonm
6 for T in test/test02*.py; do $$T; done
8 check-nonm:
9 for T in `find . -name \*.py | xargs grep -l '>>>'`; do python $$T; done
10 for T in test/test01*.py; do PYTHONPATH=. $$T; done
12 install:
13 $(SETUP) install
15 dist:
16 $(SETUP) sdist
17 cp -a cnetworkmanager.spec cnetworkmanager.changes dist
19 notes:
20 find -name \*.py | xargs grep -nH -E 'TODO|FIXME'
22 doc:
23 epydoc --config epydoc.cfg
25 .PHONY: all check check-nonm install dist notes doc