X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/halibut/blobdiff_plain/11f2edfa7c772496b8295ca979153c67ac77eea4..e63ef85916b489a5b1a18c35bfd9b868a11838a6:/doc/Makefile diff --git a/doc/Makefile b/doc/Makefile index 62c3229..cfdd943 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,17 +1,23 @@ -CHAPTERS := $(SITE) blurb intro running input licence +mandir=$(prefix)/man +man1dir=$(mandir)/man1 + +CHAPTERS := $(SITE) blurb intro running input output licence manpage index INPUTS = $(patsubst %,%.but,$(CHAPTERS)) HALIBUT = ../build/halibut -all: Contents.html +all: index.html halibut.1 + +index.html: $(INPUTS) $(HALIBUT) + $(HALIBUT) --text=halibut.txt --html --info=halibut.info \ + --ps=halibut.ps --pdf=halibut.pdf $(INPUTS) + +halibut.1: manpage.but + $(HALIBUT) --man=halibut.1 manpage.but -Contents.html: $(INPUTS) - $(HALIBUT) $(INPUTS) - rm -f index.html - ln -s Contents.html index.html - mv output.txt halibut.txt - rm -f output.hlp output.cnt output.1 +install: + $(INSTALL) -m 644 halibut.1 $(man1dir)/halibut.1 clean: - rm -f *.html *.txt *.hlp *.cnt *.1 + rm -f *.html *.txt *.hlp *.cnt *.1 *.info* *.ps *.pdf