Makefileの修正
authorj8takagi <j8takagi@nifty.com>
Mon, 4 Feb 2013 02:14:18 +0000 (11:14 +0900)
committerj8takagi <j8takagi@nifty.com>
Mon, 4 Feb 2013 02:14:18 +0000 (11:14 +0900)
doc/Makefile

index 7e7a0b1..e4a6b53 100644 (file)
@@ -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