projects
/
YACASL2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
957cc6f
)
Makefileの修正
author
j8takagi
<j8takagi@nifty.com>
Mon, 4 Feb 2013 02:14:18 +0000
(11:14 +0900)
committer
j8takagi
<j8takagi@nifty.com>
Mon, 4 Feb 2013 02:14:18 +0000
(11:14 +0900)
doc/Makefile
patch
|
blob
|
history
diff --git
a/doc/Makefile
b/doc/Makefile
index
7e7a0b1
..
e4a6b53
100644
(file)
--- 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