From 9dcd49e2dade1637d920158b0390eb99615430a4 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Wed, 2 Dec 2015 10:18:26 +0100 Subject: add rationale and man page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- Makefile | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f5c4dce..136bc4e 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,10 @@ DATADIR = $(PREFIX)$(DATA) DOCDIR = $(DATADIR)/doc # The info manual documentation path including prefix INFODIR = $(DATADIR)/info +# The man page documentation path including prefix +MANDIR = $(DATADIR)/man +# The man page section 1 path including prefix +MAN1DIR = $(MANDIR)/man1 # The license base path including prefix LICENSEDIR = $(DATADIR)/licenses @@ -109,7 +113,7 @@ bin/auto-auto-complete.fish: src/completion bin/auto-auto-complete # Install rules .PHONY: install -install: install-base install-examples install-info install-shell +install: install-base install-examples install-info install-man install-shell .PHONY: install install-all: install-base install-doc install-shell @@ -132,7 +136,7 @@ install-license: # Install documentation .PHONY: install-doc -install-doc: install-examples install-info install-pdf install-ps install-dvi +install-doc: install-examples install-info install-pdf install-ps install-dvi install-man .PHONY: install-examples install-examples: doc/example @@ -159,6 +163,11 @@ install-dvi: bin/auto-auto-complete.dvi install -dm755 -- "$(DESTDIR)$(DOCDIR)" install -m644 $< -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/$(PKGNAME).dvi" +.PHONY: install-man +install-man: doc/man/auto-auto-complete.1 + install -dm755 -- "$(DESTDIR)$(DOCDIR)" + install -m644 $< -- "$(DESTDIR)$(MAN1DIR)/$(COMMAND).1" + # Install shell auto-completion .PHONY: install-shell @@ -192,6 +201,7 @@ uninstall: -rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/$(PKGNAME).ps" -rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/$(PKGNAME).dvi" -rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/example" + -rm -- "$(DESTDIR)$(MAN1DIR)/$(COMMAND).1" -rmdir -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)" -rm -- "$(DESTDIR)$(DATADIR)/fish/completions/$(COMMAND).fish" -rmdir -- "$(DESTDIR)$(DATADIR)/fish/completions" -- cgit v1.2.3-70-g09d2