Patrick Georgi has uploaded this change for review. ( 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 --- M util/amdfwtool/Makefile 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/62/49962/1
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 $@