From fad0b5454a6d4788d9133a348e7039197b22316b Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Thu, 12 Aug 2021 12:11:38 +0200 Subject: [PATCH] Makefile: Shut up "make clean" Use `-f` flag of `rm` to avoid error messages from `make clean` when the targets files don't exist. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 481b18e..164c794 100644 --- a/Makefile +++ b/Makefile @@ -69,7 +69,7 @@ manpages += prun/prun.1 prun/pman.1 prun/ptype.1 all: $(manpages) clean: - @rm $(manpages) + @rm -f $(manpages) install: all @prefix="$(prefix)" usr_prefix="$(usr_prefix)" usrlocal_prefix="$(usrlocal_prefix)" \