summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 6f378e658b4c8350067c8504dfb789a9fbffe7e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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