Skip to content

Commit

Permalink
chore(test/Makefile): replace $(RM) with 'rm -f'
Browse files Browse the repository at this point in the history
  • Loading branch information
lcsmuller committed Jun 28, 2022
1 parent e387a7c commit 9079145
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CFLAGS += -Wall -Wextra -Wpedantic -g -I$(TOP) -std=c89
all: $(EXES)

clean:
$(RM) $(EXES)
rm -f $(EXES)

.PHONY : all clean

0 comments on commit 9079145

Please sign in to comment.