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 /examples | |
parent | c994d9343b17b269c1fe48eb26c4be7cbf991478 (diff) | |
download | liburing-32fcace197a93b060001c90dbc0936bfa38ec294.tar.gz liburing-32fcace197a93b060001c90dbc0936bfa38ec294.tar.bz2 |
Makefile: quiet down rm
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Makefile | 2 |
1 files changed, 1 insertions, 1 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) |