Files
third_party_liburing/Makefile.quiet
T
Jens Axboe 1cff0db7bc Makefile: handle quiet AR/RANLIB
Also unify across subdirs.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
2019-09-22 10:10:33 -06:00

11 lines
202 B
Makefile

ifneq ($(findstring $(MAKEFLAGS),s),s)
ifndef V
QUIET_CC = @echo ' ' CC $@;
QUIET_LINK = @echo ' ' LINK $@;
QUIET_AR = @echo ' ' AR $@;
QUIET_RANLIB = @echo '' RANLIB $@;
endif
endif