Files
a13labs.infra/tools/read_system_id/Makefile
T

11 lines
122 B
Makefile

BINARY=read_system_id
.PHONY: all build clean
all: build
build:
go build -o $(BINARY) main.go
clean:
rm -f $(BINARY)