diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-09-22 10:09:48 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-09-22 10:10:33 -0600 |
commit | 1cff0db7bc315c02774e3345243a21763d73dada (patch) | |
tree | 4548bafe1feaf30ce7214b0a577fd69633b8eb01 /examples | |
parent | 95b3b9bec78fcfb7b1a3dcecedccab5becb1e416 (diff) | |
download | liburing-1cff0db7bc315c02774e3345243a21763d73dada.tar.gz liburing-1cff0db7bc315c02774e3345243a21763d73dada.tar.bz2 |
Makefile: handle quiet AR/RANLIB
Also unify across subdirs.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/examples/Makefile b/examples/Makefile index 72352a1..6fe3ac3 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -2,12 +2,7 @@ CFLAGS ?= -g -O2 XCFLAGS = override CFLAGS += -Wall -D_GNU_SOURCE -L../src/ -I../src/include/ -ifneq ($(findstring $(MAKEFLAGS),s),s) -ifndef V - QUIET_CC = @echo ' ' CC $@; - QUIET_LINK = @echo ' ' LINK $@; -endif -endif +include ../Makefile.quiet all_targets += io_uring-test io_uring-cp link-cp ucontext-cp |