X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=doc%2FMakefile;h=04b5f167df1ad3e4e9630693af17b00c9264a0e6;hb=8987c22715397eda101c25fb6ca1c37852db4adf;hp=3c9b3be95e58ccf28d1b5756a44cad7d7e0d3af9;hpb=b3f91f53a0a715249df3582be19d064f831619a0;p=YACASL2.git diff --git a/doc/Makefile b/doc/Makefile index 3c9b3be..04b5f16 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,48 +1,44 @@ -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 +INSTALL-INFO-TARGETS := yacasl2.info -doc: info htmlnosplit html pdf +.PHONY: base all info html htmls pdf casl2_spec distclean clean -info: $(DOCNAME).info +base: install.txt info html -htmlnosplit: $(DOCNAME).html - $(MV) $< index.html +all: base html pdf casl2_spec -html: $(SRC) $(CSS) - if test ! -e $@; then $(MKDIR) $@; fi; - $(CP) $(CSS) $@/$(CSS) - $(MAKEINFO) -o $@ --html --css-ref=$(CSS) $(SRC) +info: yacasl2.info -pdf: $(DOCNAME).pdf +html: $(addsuffix .html,$(DOCS)) -$(DOCNAME).html: $(SRC) $(CSS) - $(MAKEINFO) -o $@ --no-split --html --css-include=$(CSS) $(SRC) +htmls: $(addsuffix _html,$(DOCS)) -$(DOCNAME).pdf: $(DOCNAME).dvi - $(DVI2PDF) $^ +pdf: $(addsuffix .pdf,$(DOCS)) -$(DOCNAME).dvi: $(SRC) - TEX=$(PTEX) $(TEXI2DVI) -q --texinfo=@afourpaper -o $@ $< - @$(MAKE) clean_tex_tmp +casl2_spec: + $(MAKE) -C casl2_spec -clean: clean_docs clean_tex_tmp +yacasl2.info: manual.texi + $(MAKEINFO) $(MAKEINFO_FLAGS) $< -clean_docs: - @$(RMRF) html $(DOCNAME).info $(DOCNAME).pdf $(DOCNAME).html +# makeで作成されたドキュメントはすべて削除 +distclean: clean texinfo-distclean + $(RM) install.txt *.info *.html *_html *.pdf + $(MAKE) -C casl2_spec distclean -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 +# make baseで作成されたドキュメントは残す +clean: texinfo-clean + $(RM) *.bak + $(MAKE) -C casl2_spec clean + +include texinfo.mk + +include install-info.mk