.PHONY: build test clean build: @mkdir -p bin && go build -o bin/cnpjgen . test: @go test -v ./... clean: @rm -rf bin