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>
diff --git a/util/ifdtool/Makefile b/util/ifdtool/Makefile
index 936aa50..cf6d378 100644
--- a/util/ifdtool/Makefile
+++ b/util/ifdtool/Makefile
@@ -29,7 +29,7 @@
$(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
clean:
- rm -f $(PROGRAM) *.o *~
+ rm -f $(PROGRAM) *.o *~ .dependencies
distclean: clean
dep: