util/ifdtool: Remove .dependencies on make clean
The generated file .dependencies shall be removed on invocation of 'make clean' as the clean target aims to delete all generated files. Change-Id: I4ec291fe84136bbdf1c2563cc10195846652a36d Signed-off-by: Werner Zeh <werner.zeh@siemens.com> Reviewed-on: https://review.coreboot.org/26600 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
3664647a25
commit
d5f91e41c3
|
@ -29,7 +29,7 @@ $(PROGRAM): $(OBJS)
|
||||||
$(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
|
$(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(PROGRAM) *.o *~
|
rm -f $(PROGRAM) *.o *~ .dependencies
|
||||||
distclean: clean
|
distclean: clean
|
||||||
|
|
||||||
dep:
|
dep:
|
||||||
|
|
Loading…
Reference in New Issue