Docs rebuild, removing submodule because it was causing build problems and I don't quite grok them :)

This commit is contained in:
Michael DeHaan 2012-03-12 19:13:19 -04:00
commit 3f834cfe3e
21 changed files with 295 additions and 65 deletions

View file

@ -4,7 +4,7 @@ SITELIB = $(shell python -c "from distutils.sysconfig import get_python_lib; pri
all: clean docs
docs: clean
docs: clean htmlman
./build-site.py
viewdocs: clean
@ -12,8 +12,8 @@ viewdocs: clean
htmlman:
mkdir -p man
$(ASCII2HTMLMAN) ansible/docs/man/man1/ansible.1.asciidoc
$(ASCII2HTMLMAN) ansible/docs/man/man1/ansible-playbook.1.asciidoc
$(ASCII2HTMLMAN) ansible.1.asciidoc
$(ASCII2HTMLMAN) ansible-playbook.1.asciidoc
htmldocs:
./build-site.py rst
@ -29,6 +29,4 @@ clean:
find . -type f \( -name "*.swp" \) -delete
.PHONEY: docs manual clean
vpath %.asciidoc docs/man/man1