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:
parent
f9608cd8f4
commit
e862a004d7
|
@ -16,3 +16,5 @@ $(TARGET): $(OBJ)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@rm -f $(TARGET) $(OBJ)
|
@rm -f $(TARGET) $(OBJ)
|
||||||
|
|
||||||
|
distclean: clean
|
||||||
|
|
|
@ -2,3 +2,5 @@ all:
|
||||||
$(CC) post.c -o post
|
$(CC) post.c -o post
|
||||||
clean:
|
clean:
|
||||||
rm -f post
|
rm -f post
|
||||||
|
|
||||||
|
distclean: clean
|
||||||
|
|
Loading…
Reference in New Issue