summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2021-01-27 08:10:11 +0100
committerPatrick Georgi <pgeorgi@google.com>2021-01-28 09:27:46 +0000
commitd92d7cb515aa1222d2b8e500157d4b911d7c8783 (patch)
treee524e8e21d84f0c8f787a703e7c1870d7bfddbfd /util
parent157f9f567ba3c1eb482489ba9eb3982d0eb736da (diff)
downloadcoreboot-d92d7cb515aa1222d2b8e500157d4b911d7c8783.tar.xz
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>
Diffstat (limited to 'util')
-rw-r--r--util/amdfwtool/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/amdfwtool/Makefile b/util/amdfwtool/Makefile
index c19c8e638c..9dbce9c791 100644
--- a/util/amdfwtool/Makefile
+++ b/util/amdfwtool/Makefile
@@ -7,6 +7,7 @@ OBJ = $(SRC:%.c=%.o)
TARGET = amdfwtool
CFLAGS=-O2 -Wall -Wextra -Wshadow
+all: $(TARGET)
$(TARGET): $(OBJ)
$(CC) $(OBJ) $(LDFLAGS) -o $@