From 3f4886d988aee4aa63c25a1512597432253139b3 Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Wed, 12 Feb 2014 17:08:27 +0100 Subject: [PATCH] Makefile: remove _all_ the object files in the clean target For instance eeprom.o is still around after "make clean" without this change. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 234110e..d53a27f 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ CFLAGS=-g -I. -Wall -O2 all: eeprog clean: - rm -f eeprog 24cXX.o + rm -f eeprog *.o eeprog: eeprog.o 24cXX.o