X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=doc%2FMakefile;fp=doc%2FMakefile;h=9eb81c34905abd7b9057c53a99aa6f273a4d01f0;hp=c4dc520effe08083d007cfbb95a9a0dedce59135;hb=123e1c84b369e6f1c7b28c72e6902e4742628be4;hpb=c382a00ca44f99c57fe50b5b2ec6cafd457b16b5 diff --git a/doc/Makefile b/doc/Makefile index c4dc520..9eb81c3 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,47 +1,63 @@ DOCNAME = yacasl2 SRC = $(DOCNAME).texi CSS = style.css +HTMLDIR = html -MV = mv -CP = cp -MKDIR = mkdir -RMRF = rm -rf -PTEX = ptex -TEXI2DVI = texi2dvi -DVI2PDF = dvipdfmx -MAKEINFO = makeinfo +MV ?= mv +CP ?= cp +MKDIR ?= mkdir +RMRF ?= rm -rf +PTEX ?= ptex +TEXI2DVI ?= texi2dvi +DVI2PDF ?= dvipdfmx +MAKEINFO ?= gmakeinfo +INSTALL ?= install +INSTALL-INFO ?= ginstall-info -.PHONY: doc info htmlnosplit html pdf clean clean_docs clean_tex_tmp +prefix ?= ~ +infodir ?= $(prefix)/share/info + +.PHONY: all info htmlnosplit html pdf install-info clean clean-docs clean-tex-tmp .INTERMEDIATE: $(DOCNAME).dvi -doc: info htmlnosplit html pdf +all: info html htmls pdf info: $(DOCNAME).info -htmlnosplit: index.html - -index.html: $(SRC) $(CSS) - $(MAKEINFO) -o $@ --no-split --html --css-include=$(CSS) $(SRC) +html: $(DOCNAME).html + $(MV) $< index.html -html: $(SRC) $(CSS) - if test ! -e $@; then $(MKDIR) $@; fi; - $(CP) $(CSS) $@/$(CSS) - $(MAKEINFO) -o $@ --html --css-ref=$(CSS) $(SRC) +htmls: $(SRC) $(CSS) + $(INSTALL) -d $(HTMLDIR) + $(INSTALL) $(CSS) $(HTMLDIR)/ + $(MAKEINFO) -o $(HTMLDIR) --html --css-ref=$(CSS) $(SRC) pdf: $(DOCNAME).pdf +$(DOCNAME).html: $(SRC) $(CSS) + $(MAKEINFO) -o $@ --no-split --html --css-include=$(CSS) $(SRC) + $(DOCNAME).pdf: $(DOCNAME).dvi $(DVI2PDF) $^ $(DOCNAME).dvi: $(SRC) TEX=$(PTEX) $(TEXI2DVI) -q --texinfo=@afourpaper -o $@ $< - @$(MAKE) clean_tex_tmp + @$(MAKE) clean-tex-tmp + +install-info: $(DOCNAME).info + $(INSTALL) -d $(infodir) + $(INSTALL) $(DOCNAME).info $(infodir)/$(DOCNAME) + $(INSTALL-INFO) $(infodir)/$(DOCNAME) $(infodir)/dir + +uninstall-info: $(DOCNAME).info + $(INSTALL-INFO) --delete $(infodir)/$(DOCNAME) $(infodir)/dir + $(RM) $(infodir)/$(DOCNAME) -clean: clean_docs clean_tex_tmp +clean: clean-docs clean-tex-tmp -clean_docs: - @$(RMRF) html $(DOCNAME).info $(DOCNAME).pdf $(DOCNAME).html +clean-docs: + @$(RMRF) html $(DOCNAME).info $(DOCNAME).pdf index.html -clean_tex_tmp: +clean-tex-tmp: @$(RMRF) $(DOCNAME).aux $(DOCNAME).cp $(DOCNAME).cps $(DOCNAME).fn $(DOCNAME).ky $(DOCNAME).log $(DOCNAME).pg $(DOCNAME).pgs $(DOCNAME).tmp $(DOCNAME).toc $(DOCNAME).tp $(DOCNAME).vr