diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-12-23 21:33:47 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-12-23 21:33:47 -0700 |
commit | 32fcace197a93b060001c90dbc0936bfa38ec294 (patch) | |
tree | ff4a1f859d8f0cf1f88f019ae990cb60d006d027 | |
parent | c994d9343b17b269c1fe48eb26c4be7cbf991478 (diff) | |
download | liburing-32fcace197a93b060001c90dbc0936bfa38ec294.tar.gz liburing-32fcace197a93b060001c90dbc0936bfa38ec294.tar.bz2 |
Makefile: quiet down rm
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | examples/Makefile | 2 | ||||
-rw-r--r-- | src/Makefile | 4 | ||||
-rw-r--r-- | test/Makefile | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/examples/Makefile b/examples/Makefile index 6fe3ac3..5896b45 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -16,4 +16,4 @@ test_objs := $(patsubst %.c,%.ol,$(test_srcs)) $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $< -luring $(XCFLAGS) clean: - rm -f $(all_targets) $(test_objs) + @rm -f $(all_targets) $(test_objs) diff --git a/src/Makefile b/src/Makefile index 2e4ad06..07adf6e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -62,5 +62,5 @@ endif $(liburing_objs): include/liburing.h clean: - rm -f $(all_targets) $(liburing_objs) $(liburing_sobjs) $(soname).new - rm -f *.so* *.a *.o + @rm -f $(all_targets) $(liburing_objs) $(liburing_sobjs) $(soname).new + @rm -f *.so* *.a *.o diff --git a/test/Makefile b/test/Makefile index 04e0ca5..38217ab 100644 --- a/test/Makefile +++ b/test/Makefile @@ -57,7 +57,7 @@ install: $(all_targets) runtests.sh runtests-loop.sh $(INSTALL) -D -m 755 runtests.sh $(datadir)/liburing-test/ $(INSTALL) -D -m 755 runtests-loop.sh $(datadir)/liburing-test/ clean: - rm -f $(all_targets) $(test_objs) + @rm -f $(all_targets) $(test_objs) runtests: all @./runtests.sh $(all_targets) |