From: j8takagi Date: Mon, 4 Feb 2013 02:14:18 +0000 (+0900) Subject: Makefileの修正 X-Git-Tag: v0.2p9~7 X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=commitdiff_plain;h=1b50560326f7ce2b73848537b20d48a961195a0f;ds=sidebyside Makefileの修正 --- diff --git a/doc/Makefile b/doc/Makefile index 7e7a0b1..e4a6b53 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,3 +1,5 @@ +RMR := $(RM) -r + DOCS := install manual CSS := style.css @@ -21,9 +23,13 @@ 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 + $(RM) *_html *.pdf include texinfo.mk