~canonical-ci-engineering/ubuntu-ci-services-itself/ansible

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Package Import Robot
  • Author(s): Harlan Lieberman-Berg
  • Date: 2014-04-01 22:00:24 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20140401220024-jkxyhf2ggcv7xmqa
Tags: 1.5.4+dfsg-1
* Pull missing manpages from upstream development branch.
* New upstream version 1.5.4, security update.
* Add patch to correct directory_mode functionality. (Closes: #743027)

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
# Manpages are currently built with asciidoc -- would like to move to markdown
21
21
# This doesn't evaluate until it's called. The -D argument is the
22
22
# directory of the target file ($@), kinda like `dirname`.
23
 
MANPAGES := docs/man/man1/ansible.1 docs/man/man1/ansible-playbook.1 docs/man/man1/ansible-pull.1 docs/man/man1/ansible-doc.1
 
23
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 docs/man/man1/ansible-vault.1
24
24
ifneq ($(shell which a2x 2>/dev/null),)
25
25
ASCII2MAN = a2x -D $(dir $@) -d manpage -f manpage $<
26
26
ASCII2HTMLMAN = a2x -D docs/html/man/ -d manpage -f xhtml
172
172
webdocs: $(MANPAGES)
173
173
        (cd docsite/; make docs)
174
174
 
 
175
docs: $(MANPAGES)