Skip to content

Commit 9079145

Browse files
committed
chore(test/Makefile): replace $(RM) with 'rm -f'
1 parent e387a7c commit 9079145

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CFLAGS += -Wall -Wextra -Wpedantic -g -I$(TOP) -std=c89
88
all: $(EXES)
99

1010
clean:
11-
$(RM) $(EXES)
11+
rm -f $(EXES)
1212

1313
.PHONY : all clean
1414

0 commit comments

Comments
 (0)