mirror of
https://github.com/nicolargo/glances.git
synced 2024-11-24 13:23:12 +03:00
17 lines
316 B
Makefile
17 lines
316 B
Makefile
PORT?=8008
|
|
|
|
install:
|
|
sensible-browser "https://github.com/nicolargo/glances#installation"
|
|
|
|
test:
|
|
./unitest-all.sh
|
|
|
|
docs:
|
|
cd docs && ./build.sh
|
|
|
|
docs-server: docs
|
|
(sleep 2 && sensible-browser "http://localhost:$(PORT)") &
|
|
cd docs/_build/html/ && python -m SimpleHTTPServer $(PORT)
|
|
|
|
.PHONY: test docs docs-server
|