From a350602e0d7ddeff4ce0026eab747df31bf3688a Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Sun, 6 Sep 2020 00:51:26 -0400 Subject: [PATCH] Fix call to rm in bin/Makefile 'clean' rule --- bin/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/Makefile b/bin/Makefile index 2f28d14..068e0ad 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -26,4 +26,4 @@ $(OBJS): %.o: %.c $(CC) $(CFLAGS) -c $< clean: - $(RM) $(PROGRAMS) $(OBJS) + $(RM) -f $(PROGRAMS) $(OBJS)