summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-30 11:18:12 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-30 11:18:12 +0000
commit78f6130528002fc63dcaa9260f0f7e6727e42a29 (patch)
treef7022ce1e5710e5e49f647a9c599a10fe7d7c2e9
parent918a712cf87f0dfec943069b617d1763e7f824a8 (diff)
* Makefile.in: Check V=1 argument if run "make clean" or similar.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30430 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in20
2 files changed, 14 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 372991e1ce..4c5ac02579 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Dec 30 20:57:09 2010 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
+
+ * Makefile.in: Check V=1 argument if run "make clean" or similar.
+
Thu Dec 30 20:41:50 2010 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* Makefile.in: Kill ugly line continuation.
diff --git a/Makefile.in b/Makefile.in
index 4084811218..b3e0044436 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -296,14 +296,14 @@ enc/unicode/name2ctype.h: enc/unicode/name2ctype.kwd
$(Q) $(CPP) $(XCFLAGS) $(CPPFLAGS) $(COUTFLAG)$@ -E $< > $@
clean-local::
- @$(RM) ext/extinit.c ext/extinit.$(OBJEXT) ext/ripper/y.output
- @-$(RM) $(pkgconfig_DATA)
+ $(Q)$(RM) ext/extinit.c ext/extinit.$(OBJEXT) ext/ripper/y.output
+ -$(Q)$(RM) $(pkgconfig_DATA)
distclean-local::
- @$(RM) ext/config.cache $(RBCONFIG) Doxyfile
- @-$(RM) run.gdb
- @-$(RM) $(INSTALLED_LIST) $(arch_hdrdir)/ruby/config.h
- @-$(RMDIRS) $(arch_hdrdir)/ruby 2> /dev/null || true
+ $(Q)$(RM) ext/config.cache $(RBCONFIG) Doxyfile
+ -$(Q)$(RM) run.gdb
+ -$(Q)$(RM) $(INSTALLED_LIST) $(arch_hdrdir)/ruby/config.h
+ -$(Q)$(RMDIRS) $(arch_hdrdir)/ruby 2> /dev/null || true
clean-ext distclean-ext realclean-ext::
@cd ext 2>/dev/null || exit 0; set dummy `echo "${EXTS}" | tr , ' '`; shift; \
@@ -322,10 +322,10 @@ clean-ext distclean-ext realclean-ext::
done
distclean-ext realclean-ext::
- @-$(RMDIR) ext 2> /dev/null || true
+ -$(Q)$(RMDIR) ext 2> /dev/null || true
clean-extout:
- @-$(RMDIRS) $(EXTOUT) 2> /dev/null || true
+ -$(Q)$(RMDIRS) $(EXTOUT) 2> /dev/null || true
clean-enc distclean-enc realclean-enc:
@test -f "$(ENC_MK)" || exit 0; \
@@ -334,10 +334,10 @@ clean-enc distclean-enc realclean-enc:
clean-rdoc distclean-rdoc realclean-rdoc:
@echo $(@:-rdoc=ing) rdoc;
- @$(RMALL) $(RDOCOUT)
+ $(Q)$(RMALL) $(RDOCOUT)
clean-capi distclean-capi realclean-capi:
@echo $(@:-capi=ing) capi;
- @$(RMALL) $(CAPIOUT)
+ $(Q)$(RMALL) $(CAPIOUT)
ext/extinit.$(OBJEXT): ext/extinit.c $(SETUP)