.PHONY: build test clean

build:
	@mkdir -p bin && go build -o bin/cpfgen .

test:
	@go test -v ./...

clean:
	@rm -rf bin
