From 907914559fa54dad06bdb7ee645edd3f563740ad Mon Sep 17 00:00:00 2001 From: lcsmuller Date: Mon, 27 Jun 2022 21:11:34 -0300 Subject: [PATCH] chore(test/Makefile): replace $(RM) with 'rm -f' --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 1741e10..ebf246f 100644 --- a/test/Makefile +++ b/test/Makefile @@ -8,7 +8,7 @@ CFLAGS += -Wall -Wextra -Wpedantic -g -I$(TOP) -std=c89 all: $(EXES) clean: - $(RM) $(EXES) + rm -f $(EXES) .PHONY : all clean