diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-01-07 18:52:55 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-01-08 21:10:51 +0000 |
commit | e862a004d7b6716df44556a23bf7ed9339e1ac6b (patch) | |
tree | 722c2b54e5b3b1d7292b7de121cf87b6d3868eaf /util/post | |
parent | f9608cd8f4c563163875fb545fc30ff4fee5734e (diff) |
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>
Diffstat (limited to 'util/post')
-rw-r--r-- | util/post/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
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 |