summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-03-06 17:14:19 +0000
committerMåns Rullgård <mans@mansr.com>2010-03-06 17:14:19 +0000
commit63611f31e89c1f1dd19f325ec20ca442841e084b (patch)
tree7348e2803c44839eaccbd783fab083c5229c7a8e /Makefile
parent34512bca0e0b987dc3abd5a79f232f7d33194f4c (diff)
Prettify make output
This gives brief messages from make by default. For full command echoing, add V=1 to make command line. Originally committed as revision 22244 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 32f9f5ff92..00cfc481b1 100644
--- a/Makefile
+++ b/Makefile
@@ -104,15 +104,15 @@ doc/%.1: doc/%.pod
install: $(INSTALL_TARGETS-yes)
install-progs: $(PROGS) $(INSTALL_PROGS_TARGETS-yes)
- mkdir -p "$(BINDIR)"
+ $(Q)mkdir -p "$(BINDIR)"
$(INSTALL) -c -m 755 $(PROGS) "$(BINDIR)"
install-data: $(DATA_FILES)
- mkdir -p "$(DATADIR)"
+ $(Q)mkdir -p "$(DATADIR)"
$(INSTALL) -m 644 $(DATA_FILES) "$(DATADIR)"
install-man: $(MANPAGES)
- mkdir -p "$(MANDIR)/man1"
+ $(Q)mkdir -p "$(MANDIR)/man1"
$(INSTALL) -m 644 $(MANPAGES) "$(MANDIR)/man1"
uninstall: uninstall-progs uninstall-data uninstall-man