Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/49227 )
Change subject: util/amdfwtool,post: add missing distclean target ......................................................................
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 felix-coreboot@felixheld.de --- M util/amdfwtool/Makefile M util/post/Makefile 2 files changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/27/49227/1
diff --git a/util/amdfwtool/Makefile b/util/amdfwtool/Makefile index 58606e3..c19c8e6 100644 --- a/util/amdfwtool/Makefile +++ b/util/amdfwtool/Makefile @@ -16,3 +16,5 @@
clean: @rm -f $(TARGET) $(OBJ) + +distclean: clean diff --git a/util/post/Makefile b/util/post/Makefile index d0a3eb9..0941cde 100644 --- a/util/post/Makefile +++ b/util/post/Makefile @@ -2,3 +2,5 @@ $(CC) post.c -o post clean: rm -f post + +distclean: clean