From 821b76551cabd4a3b49dda7ae0384a884e5e9bea Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Sun, 6 Sep 2020 00:52:14 -0400 Subject: [PATCH] Fix call to rm in examples/Makefile 'clean' rule --- examples/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Makefile b/examples/Makefile index 6923937..a48fe20 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -15,4 +15,4 @@ $(EXAMPLES): %: %.c $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS) clean: - $(RM) $(EXAMPLES) + $(RM) -f $(EXAMPLES)