adaab4a97e
Signed-off-by: Martin Roth <gaumless@gmail.com> Change-Id: I7cf35132df0bc23f7b6f78014ddd72d58ea2ab8a Reviewed-on: https://review.coreboot.org/c/coreboot/+/68983 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com> Reviewed-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
16 lines
265 B
Makefile
16 lines
265 B
Makefile
## SPDX-License-Identifier: GPL-2.0-only
|
|
SPD_GEN = bin/spd_gen
|
|
PART_ID_GEN = bin/part_id_gen
|
|
|
|
all: $(SPD_GEN) $(PART_ID_GEN)
|
|
|
|
$(SPD_GEN): src/spd_gen/*.go
|
|
go build -o $@ $^
|
|
|
|
$(PART_ID_GEN): src/part_id_gen/*.go
|
|
go build -o $@ $^
|
|
|
|
clean:
|
|
rm -rf bin/
|
|
|
|
.PHONY: all
|