doc/Makefileで、sedの記述を変更。いったん.html.bakファイルを作成してから削除
[YACASL2.git] / doc / Makefile
index 9eb81c3..2861845 100644 (file)
@@ -1,63 +1,39 @@
-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 ?= gmakeinfo
-INSTALL ?= install
-INSTALL-INFO ?= ginstall-info
+RMR := $(RM) -r
+SED := sed
+
+DOCS := install manual
+CSS := style.css
 
 prefix ?= ~
 infodir ?= $(prefix)/share/info
 
-.PHONY: all info htmlnosplit html pdf install-info clean clean-docs clean-tex-tmp
-
-.INTERMEDIATE: $(DOCNAME).dvi
-
-all: info html htmls pdf
-
-info: $(DOCNAME).info
+.PHONY: base all info html htmls pdf distclean clean
 
-html: $(DOCNAME).html
-       $(MV) $< index.html
+base: install.txt info html
 
-htmls: $(SRC) $(CSS)
-       $(INSTALL) -d $(HTMLDIR)
-       $(INSTALL) $(CSS) $(HTMLDIR)/
-       $(MAKEINFO) -o $(HTMLDIR) --html --css-ref=$(CSS) $(SRC)
+all: base htmls pdf
 
-pdf: $(DOCNAME).pdf
+info: yacasl2.info
 
-$(DOCNAME).html: $(SRC) $(CSS)
-       $(MAKEINFO) -o $@ --no-split --html --css-include=$(CSS) $(SRC)
+html: $(addsuffix .html,$(DOCS))
+       for f in $^; do $(SED) -i .bak -e 's!dir\.html#Top!\.\./!g' $$f && $(RM) $$f.bak; done
 
-$(DOCNAME).pdf: $(DOCNAME).dvi
-       $(DVI2PDF) $^
+htmls: $(addsuffix _html,$(DOCS))
+       for d in $^; do $(SED) -i .bak -e 's!\.\./dir/index\.html!\.\./\.\./!g' $$d/index.html && $(RM) $$d/index.html.bak; done
 
-$(DOCNAME).dvi: $(SRC)
-       TEX=$(PTEX) $(TEXI2DVI) -q --texinfo=@afourpaper -o $@ $<
-       @$(MAKE) clean-tex-tmp
+pdf: $(addsuffix .pdf,$(DOCS))
 
-install-info: $(DOCNAME).info
-       $(INSTALL) -d $(infodir)
-       $(INSTALL) $(DOCNAME).info $(infodir)/$(DOCNAME)
-       $(INSTALL-INFO) $(infodir)/$(DOCNAME) $(infodir)/dir
+yacasl2.info: manual.texi
+       $(MAKEINFO) $(MAKEINFO_FLAGS) $<
 
-uninstall-info: $(DOCNAME).info
-       $(INSTALL-INFO) --delete $(infodir)/$(DOCNAME) $(infodir)/dir
-       $(RM) $(infodir)/$(DOCNAME)
+# makeで作成されたドキュメントはすべて削除
+distclean: clean texinfo-distclean
+       $(RM) install.txt *.info *.html *_html *.pdf
 
-clean: clean-docs clean-tex-tmp
+# make baseで作成されたドキュメントは残す
+clean: texinfo-clean
+       $(RM) *.bak
 
-clean-docs:
-       @$(RMRF) html $(DOCNAME).info $(DOCNAME).pdf index.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