Mercurial > mplayer.hg
changeset 26321:8306fe01e788
Do not suppress command output.
author | diego |
---|---|
date | Tue, 08 Apr 2008 22:07:03 +0000 |
parents | c0dba62cd135 |
children | 6377c105cb37 |
files | Makefile |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Tue Apr 08 18:25:30 2008 +0000 +++ b/Makefile Tue Apr 08 22:07:03 2008 +0000 @@ -153,7 +153,7 @@ 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 @@ -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 -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