X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=doc%2FMakefile;h=a9f54de11c9578aeeff8d76547fc56bce4cc86d0;hb=ae7aaf86959f7de9213bc8f5f0fa5308b932a624;hp=3c9b3be95e58ccf28d1b5756a44cad7d7e0d3af9;hpb=b3f91f53a0a715249df3582be19d064f831619a0;p=YACASL2.git diff --git a/doc/Makefile b/doc/Makefile index 3c9b3be..a9f54de 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,48 +1,38 @@ -DOCNAME = yacasl2 -SRC = $(DOCNAME).texi -CSS = style.css +RMR := $(RM) -r +SED := sed -MV = mv -CP = cp -MKDIR = mkdir -RMRF = rm -rf -PTEX = ptex -TEXI2DVI = texi2dvi -DVI2PDF = dvipdfmx -MAKEINFO = makeinfo +DOCS := install manual +CSS := style.css -.PHONY: doc info htmlnosplit html pdf clean clean_docs clean_tex_tmp +prefix ?= ~ +infodir ?= $(prefix)/share/info -.INTERMEDIATE: $(DOCNAME).dvi +.PHONY: base all info html htmls pdf distclean clean -doc: info htmlnosplit html pdf +base: install.txt info html -info: $(DOCNAME).info +all: base htmls pdf -htmlnosplit: $(DOCNAME).html - $(MV) $< index.html +info: yacasl2.info -html: $(SRC) $(CSS) - if test ! -e $@; then $(MKDIR) $@; fi; - $(CP) $(CSS) $@/$(CSS) - $(MAKEINFO) -o $@ --html --css-ref=$(CSS) $(SRC) +html: $(addsuffix .html,$(DOCS)) + for f in $^; do $(SED) -i -e 's!dir\.html#Top!\.\./!g' $$f; done -pdf: $(DOCNAME).pdf +htmls: $(addsuffix _html,$(DOCS)) + for d in $^; do $(SED) -i -e 's!\.\./dir/index\.html!\.\./\.\./!g' $$d/index.html; done -$(DOCNAME).html: $(SRC) $(CSS) - $(MAKEINFO) -o $@ --no-split --html --css-include=$(CSS) $(SRC) +pdf: $(addsuffix .pdf,$(DOCS)) -$(DOCNAME).pdf: $(DOCNAME).dvi - $(DVI2PDF) $^ +yacasl2.info: manual.texi + $(MAKEINFO) $(MAKEINFO_FLAGS) $< -$(DOCNAME).dvi: $(SRC) - TEX=$(PTEX) $(TEXI2DVI) -q --texinfo=@afourpaper -o $@ $< - @$(MAKE) clean_tex_tmp +# makeで作成されたドキュメントはすべて削除 +distclean: clean texinfo-distclean + $(RM) install.txt *.info *.html *_html *.pdf -clean: clean_docs clean_tex_tmp +# make baseで作成されたドキュメントは残す +clean: texinfo-clean -clean_docs: - @$(RMRF) html $(DOCNAME).info $(DOCNAME).pdf $(DOCNAME).html +include texinfo.mk -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 +include install-info.mk