Makefile: remove _all_ the object files in the clean target
For instance eeprom.o is still around after "make clean" without this change.
This commit is contained in:
parent
994ee0b904
commit
3f4886d988
1 changed files with 1 additions and 1 deletions
2
Makefile
2
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue