util/cbfstool: eliminate late sign of life event
[coreboot2.git] / util / spd_tools / Makefile
blob5b23c32ea87c5d616286bcc366daff04a4ca8b58
1 ## SPDX-License-Identifier: GPL-2.0-only
2 SPD_GEN = bin/spd_gen
3 PART_ID_GEN = bin/part_id_gen
5 all: $(SPD_GEN) $(PART_ID_GEN)
7 $(SPD_GEN): src/spd_gen/*.go
8 go build -o $@ $^
10 $(PART_ID_GEN): src/part_id_gen/*.go
11 go build -o $@ $^
13 clean:
14 rm -rf bin/
16 .PHONY: all