From 531d7f81b6f198935740781a58b4ecb9cc51e83f Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Mon, 5 Feb 2018 22:54:10 -0500 Subject: [PATCH] add manpage install target (cherry picked from commit 8e8a29f20a5b250947e00613033775ddd952430f) (cherry picked from commit f572703efe65b8efedf3792d342ee3c09d9ba735) --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cf520b0e0ab..e1939271f7c 100644 --- a/Makefile +++ b/Makefile @@ -17,11 +17,10 @@ NAME = ansible OS = $(shell uname -s) +PREFIX ?= '/usr/local' -# 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 ?= $(patsubst %.asciidoc.in,%,$(wildcard ./docs/man/man1/ansible*.1.asciidoc.in)) ifneq ($(shell which a2x 2>/dev/null),) ASCII2MAN = a2x -L -D $(dir $@) -d manpage -f manpage $< @@ -209,6 +208,10 @@ python: install: $(PYTHON) setup.py install +install_manpages: + gzip -9 $(wildcard ./docs/man/man1/ansible*.1) + cp $(wildcard ./docs/man/man1/ansible*.1.gz) $(PREFIX)/man/man1/ + .PHONY: sdist sdist: clean docs $(PYTHON) setup.py sdist