Added --we. Ignore AlreadyAsleepOrAwake error (-o).
[cnetworkmanager.git] / Makefile
blob0ba0c93de617f65d0f0e9156989ba212b4753d48
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 $$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