nilmdb/Makefile

24 lines
338 B
Makefile
Raw Permalink Normal View History

all: test
tool:
python nilmtool.py --help
python nilmtool.py list --help
python nilmtool.py -u asfdadsf list
lint:
pylint -f parseable nilmdb
%.html: %.md
pandoc -s $< > $@
test:
python runtests.py
profile:
python runtests.py --with-profile
clean::
find . -name '*pyc' | xargs rm -f
rm -f .coverage
rm -rf tests/*testdb*