summaryrefslogtreecommitdiffstats
path: root/util/spd_tools/Makefile
blob: 5b23c32ea87c5d616286bcc366daff04a4ca8b58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
## 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