nilmtools/Makefile

46 lines
810 B
Makefile
Raw Permalink Normal View History

2020-08-06 17:31:06 -04:00
# By default, run the tests.
all: test
2020-08-06 17:31:06 -04:00
version:
python3 setup.py version
build:
python3 setup.py build_ext --inplace
dist: sdist
sdist:
python3 setup.py sdist
install:
python3 setup.py install
develop:
python3 setup.py develop
ctrl: flake
flake:
flake8 nilmtools
lint:
pylint3 --rcfile=setup.cfg nilmtools
test:
2020-08-04 10:42:00 -04:00
ifneq ($(INSIDE_EMACS),)
# Use the slightly more flexible script
python3 setup.py build_ext --inplace
python3 tests/runtests.py
else
2020-08-04 10:42:00 -04:00
# Let setup.py check dependencies, build stuff, and run the test
python3 setup.py nosetests
endif
2013-03-19 15:41:20 -04:00
clean::
2020-08-06 17:31:06 -04:00
find . -name '*.pyc' -o -name '__pycache__' -print0 | xargs -0 rm -rf
rm -f .coverage
rm -rf nilmtools.egg-info/ build/ .eggs
gitclean::
git clean -dXf
2020-08-06 17:31:06 -04:00
.PHONY: all version dist sdist install test
.PHONY: ctrl lint flake clean gitclean