summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-08 22:07:03 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-08 22:07:03 +0000
commitfa4f36202e6cb369b846a7ae224d30a236332b50 (patch)
tree15f0e3978d8c3243aa7fa3f7106cf930564b9f72
parentff191b849557997c1b864476a295a612b2e57b93 (diff)
downloadmpv-fa4f36202e6cb369b846a7ae224d30a236332b50.tar.bz2
mpv-fa4f36202e6cb369b846a7ae224d30a236332b50.tar.xz
Do not suppress command output.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26353 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 73732da802..9617390a03 100644
--- a/Makefile
+++ b/Makefile
@@ -153,7 +153,7 @@ DIRS = input \
all: $(ALL_PRG)
dep depend:: help_mp.h version.h codecs.conf.h
- @for a in $(PARTS); do $(MAKE) -C $$a dep; done
+ for a in $(PARTS); do $(MAKE) -C $$a dep; done
include mpcommon.mak
@@ -314,11 +314,11 @@ clean::
-rm -f mplayer$(EXESUF) mencoder$(EXESUF) codec-cfg$(EXESUF) \
codecs2html$(EXESUF) codec-cfg-test$(EXESUF) cpuinfo$(EXESUF) \
codecs.conf.h help_mp.h version.h TAGS tags
- @for a in $(PARTS); do $(MAKE) -C $$a clean; done
+ for a in $(PARTS); do $(MAKE) -C $$a clean; done
for dir in $(DIRS); do rm -f $$dir/*.o $$dir/*.a $$dir/*.ho $$dir/*~ ; done
distclean:: doxygen_clean
- @for a in $(PARTS); do $(MAKE) -C $$a distclean; done
+ for a in $(PARTS); do $(MAKE) -C $$a distclean; done
$(MAKE) -C TOOLS distclean
-rm -f configure.log config.mak config.h
@@ -326,11 +326,11 @@ strip:
strip -s $(ALL_PRG)
TAGS:
- @rm -f $@; \
+ rm -f $@; \
( find -name '*.[chS]' -print ) | xargs etags -a
tags:
- @rm -f $@; \
+ rm -f $@; \
( find -name '*.[chS]' -print ) | xargs ctags -a;
# ./configure must be rerun if it changed