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>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49227
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Felix Held 2021-01-07 18:52:55 +01:00
parent f9608cd8f4
commit e862a004d7
2 changed files with 4 additions and 0 deletions

View File

@ -16,3 +16,5 @@ $(TARGET): $(OBJ)
clean:
@rm -f $(TARGET) $(OBJ)
distclean: clean

View File

@ -2,3 +2,5 @@ all:
$(CC) post.c -o post
clean:
rm -f post
distclean: clean