diff options
author | Robert Timm <mail@rtti.de> | 2017-04-08 23:44:36 +0200 |
---|---|---|
committer | Robert Timm <mail@rtti.de> | 2017-04-10 22:24:20 +0200 |
commit | 382e219f05bbfb5e44c4e57a74eb299daddcda4d (patch) | |
tree | 5f3f5213bd7400fd02668bd7d682ad7e018aa4d0 /Makefile | |
parent | c52088d89aa94d036da8ab5b8b7b47416c4996dd (diff) |
adds make option V for verbose builds
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |