X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=doc%2FMakefile;h=e4a6b537ed82b308b26b6782ae69fd5e27428dbc;hp=7e7a0b19ebbe4a25497683b2afe389a6e28a1bc6;hb=1b50560326f7ce2b73848537b20d48a961195a0f;hpb=957cc6f59f2b55db0ceb8eee5837cc7817726d84 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