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>
This commit is contained in:
Patrick Georgi 2021-01-27 08:10:11 +01:00
parent 157f9f567b
commit d92d7cb515
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ OBJ = $(SRC:%.c=%.o)
TARGET = amdfwtool
CFLAGS=-O2 -Wall -Wextra -Wshadow
all: $(TARGET)
$(TARGET): $(OBJ)
$(CC) $(OBJ) $(LDFLAGS) -o $@