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