From 89b0ed7dc7b7a572b93ee44fe40729d566ff2be8 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Fri, 4 Sep 2020 22:58:45 -0500 Subject: [PATCH] Make sure 'clean' in bin/Makefile removes .o files --- bin/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/Makefile b/bin/Makefile index f01c6e5..b1c7f3c 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -23,4 +23,4 @@ $(OBJS): %.o: %.c $(CC) $(CFLAGS) -c $< clean: - $(RM) $(PROGRAMS) + $(RM) $(PROGRAMS) $(OBJS)