1 2 3 4 5 6 7 8 9 10 11
SPD_GEN = bin/spd_gen all: $(SPD_GEN) $(SPD_GEN): go build -o $(SPD_GEN) src/spd_gen/*.go clean: rm -rf bin/ .PHONY: all