Texinfoで生成するHTMLのスタイルを修正
[YACASL2.git] / doc / Makefile
index 7e7a0b1..a9f54de 100644 (file)
@@ -1,3 +1,6 @@
+RMR := $(RM) -r
+SED := sed
+
 DOCS := install manual
 CSS := style.css
 
@@ -13,16 +16,21 @@ all: base htmls pdf
 info: yacasl2.info
 
 html: $(addsuffix .html,$(DOCS))
+       for f in $^; do $(SED) -i -e 's!dir\.html#Top!\.\./!g' $$f; done
 
 htmls: $(addsuffix _html,$(DOCS))
+       for d in $^; do $(SED) -i -e 's!\.\./dir/index\.html!\.\./\.\./!g' $$d/index.html; done
 
 pdf: $(addsuffix .pdf,$(DOCS))
 
 yacasl2.info: manual.texi
        $(MAKEINFO) $(MAKEINFO_FLAGS) $<
 
-distclean: texinfo-distclean
+# makeで作成されたドキュメントはすべて削除
+distclean: clean texinfo-distclean
+       $(RM) install.txt *.info *.html *_html *.pdf
 
+# make baseで作成されたドキュメントは残す
 clean: texinfo-clean
 
 include texinfo.mk