From 2b7cb9ed7acc0a30931bfb846c8bd3d8c0b27074 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 3 Dec 2014 17:20:39 +0100 Subject: [PATCH] add doc & clean targets --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 6d322f2..26ddbc4 100644 --- a/Makefile +++ b/Makefile @@ -9,3 +9,11 @@ pep8: test: python3 ./tests/test_cli.py + +doc: + $(MAKE) -C docs html + @echo "xdg-open docs/build/html/index.html" + +clean: + $(MAKE) -C docs clean +