Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/49962 )
Change subject: util/amdfwtool: Add "all" target to Makefile ......................................................................
util/amdfwtool: Add "all" target to Makefile
The test-tools make target requires it.
Change-Id: I20819f8d587e6b3a472cdc32751e9edf505d5ba6 Signed-off-by: Patrick Georgi pgeorgi@google.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/49962 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Martin Roth martinroth@google.com Reviewed-by: Angel Pons th3fanbus@gmail.com --- M util/amdfwtool/Makefile 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Martin Roth: Looks good to me, approved Angel Pons: Looks good to me, approved
diff --git a/util/amdfwtool/Makefile b/util/amdfwtool/Makefile index c19c8e6..9dbce9c 100644 --- a/util/amdfwtool/Makefile +++ b/util/amdfwtool/Makefile @@ -7,6 +7,7 @@ TARGET = amdfwtool CFLAGS=-O2 -Wall -Wextra -Wshadow
+all: $(TARGET)
$(TARGET): $(OBJ) $(CC) $(OBJ) $(LDFLAGS) -o $@