summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRobert Timm <mail@rtti.de>2017-04-08 23:44:36 +0200
committerRobert Timm <mail@rtti.de>2017-04-10 22:24:20 +0200
commit382e219f05bbfb5e44c4e57a74eb299daddcda4d (patch)
tree5f3f5213bd7400fd02668bd7d682ad7e018aa4d0 /Makefile
parentc52088d89aa94d036da8ab5b8b7b47416c4996dd (diff)
adds make option V for verbose builds
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 8b8a941..74bc6b8 100644
--- a/Makefile
+++ b/Makefile
@@ -32,15 +32,15 @@ uninstall:
clean: $(SRCDIR).subdir-clean
sandbox:
- @make $(MFLAGS) RUNPREFIX=$(CURDIR)/sandbox/usr PREFIX=/usr DESTDIR=./sandbox install
+ $(Q)$(MAKE) $(MFLAGS) RUNPREFIX=$(CURDIR)/sandbox/usr PREFIX=/usr DESTDIR=./sandbox install
runsandbox: sandbox
sandbox/usr/bin/vimb
%.subdir-all:
- @$(MAKE) $(MFLAGS) -C $*
+ $(Q)$(MAKE) $(MFLAGS) -C $*
%.subdir-clean:
- @$(MAKE) $(MFLAGS) -C $* clean
+ $(Q)$(MAKE) $(MFLAGS) -C $* clean
.PHONY: all options install uninstall clean sandbox runsandbox