summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJames Cammarata <jimi@sngx.net>2014-03-16 13:58:42 -0500
committerJames Cammarata <jimi@sngx.net>2014-03-16 14:00:50 -0500
commitba4fbd2b66104fb1622d4d5e66369a8a750f9363 (patch)
tree306a0338fd434076644f9731e8e2eec8aa9e7b00 /Makefile
parent0dde3b708062d2406df8aa335d9c7b7e036731c4 (diff)
downloadansible-ba4fbd2b66104fb1622d4d5e66369a8a750f9363.tar.gz
Adding man page for ansible-galaxy
Partially resolves #6471
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 982cd143b2..41d80a13c3 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,7 @@ OS = $(shell uname -s)
# Manpages are currently built with asciidoc -- would like to move to markdown
# This doesn't evaluate until it's called. The -D argument is the
# directory of the target file ($@), kinda like `dirname`.
-MANPAGES := docs/man/man1/ansible.1 docs/man/man1/ansible-playbook.1 docs/man/man1/ansible-pull.1 docs/man/man1/ansible-doc.1
+MANPAGES := docs/man/man1/ansible.1 docs/man/man1/ansible-playbook.1 docs/man/man1/ansible-pull.1 docs/man/man1/ansible-doc.1 docs/man/man1/ansible-galaxy.1
ifneq ($(shell which a2x 2>/dev/null),)
ASCII2MAN = a2x -D $(dir $@) -d manpage -f manpage $<
ASCII2HTMLMAN = a2x -D docs/html/man/ -d manpage -f xhtml
@@ -172,3 +172,4 @@ deb: debian
webdocs: $(MANPAGES)
(cd docsite/; make docs)
+docs: $(MANPAGES)