summaryrefslogtreecommitdiffstats
path: root/util/spd_tools/Makefile
blob: d8806724fa3fdca755893d7009ec9a8506164208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SPD_GEN = bin/spd_gen
PART_ID_GEN = bin/part_id_gen

all: $(SPD_GEN) $(PART_ID_GEN)

$(SPD_GEN):
	go build -o $(SPD_GEN) src/spd_gen/*.go

$(PART_ID_GEN):
	go build -o $(PART_ID_GEN) src/part_id_gen/*.go

clean:
	rm -rf bin/

.PHONY: all