diff options
author | Patrick Georgi <pgeorgi@google.com> | 2021-01-27 08:10:11 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-01-28 09:27:46 +0000 |
commit | d92d7cb515aa1222d2b8e500157d4b911d7c8783 (patch) | |
tree | e524e8e21d84f0c8f787a703e7c1870d7bfddbfd | |
parent | 157f9f567ba3c1eb482489ba9eb3982d0eb736da (diff) |
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>
-rw-r--r-- | util/amdfwtool/Makefile | 1 |
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 $@ |