doc/Makefileで、sedの記述を変更。いったん.html.bakファイルを作成してから削除
[YACASL2.git] / doc / Makefile
index 7d575e2..2861845 100644 (file)
@@ -1,4 +1,5 @@
 RMR := $(RM) -r
+SED := sed
 
 DOCS := install manual
 CSS := style.css
@@ -15,8 +16,10 @@ all: base htmls pdf
 info: yacasl2.info
 
 html: $(addsuffix .html,$(DOCS))
+       for f in $^; do $(SED) -i .bak -e 's!dir\.html#Top!\.\./!g' $$f && $(RM) $$f.bak; done
 
 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
 
 pdf: $(addsuffix .pdf,$(DOCS))
 
@@ -29,6 +32,7 @@ distclean: clean texinfo-distclean
 
 # make baseで作成されたドキュメントは残す
 clean: texinfo-clean
+       $(RM) *.bak
 
 include texinfo.mk