From e862a004d7b6716df44556a23bf7ed9339e1ac6b Mon Sep 17 00:00:00 2001 From: Felix Held Date: Thu, 7 Jan 2021 18:52:55 +0100 Subject: [PATCH] util/amdfwtool,post: add missing distclean target Without this target some spurious errors occurred when running make distclean at the top level of coreboot. Change-Id: I3d3061b386fc5b4a043cfc7ff8fd3c0da33c0e83 Signed-off-by: Felix Held Reviewed-on: https://review.coreboot.org/c/coreboot/+/49227 Reviewed-by: Raul Rangel Tested-by: build bot (Jenkins) --- util/amdfwtool/Makefile | 2 ++ util/post/Makefile | 2 ++ 2 files changed, 4 insertions(+) diff --git a/util/amdfwtool/Makefile b/util/amdfwtool/Makefile index 58606e3ed0..c19c8e638c 100644 --- a/util/amdfwtool/Makefile +++ b/util/amdfwtool/Makefile @@ -16,3 +16,5 @@ $(TARGET): $(OBJ) clean: @rm -f $(TARGET) $(OBJ) + +distclean: clean diff --git a/util/post/Makefile b/util/post/Makefile index d0a3eb99e4..0941cde0a1 100644 --- a/util/post/Makefile +++ b/util/post/Makefile @@ -2,3 +2,5 @@ all: $(CC) post.c -o post clean: rm -f post + +distclean: clean