You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- URL="http://localhost/nilmdb"
-
- all:
- ifeq ($(INSIDE_EMACS), t)
- @make test
- else
- @echo "Try 'make install'"
- endif
-
- test:
- src/trainola.py data.js
-
- version:
- python setup.py version
-
- dist: sdist
- sdist:
- python setup.py sdist
-
- install:
- python setup.py install
-
- develop:
- python setup.py develop
-
- clean::
- find . -name '*pyc' | xargs rm -f
- rm -rf nilmtools.egg-info/ build/ MANIFEST.in
-
- gitclean::
- git clean -dXf
-
- .PHONY: all test version dist sdist install clean gitclean
|