This commit is contained in:
Lucas F. 2026-07-16 11:08:24 -03:00
commit d161ab35a7
5 changed files with 198 additions and 0 deletions

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
.PHONY: build test clean
build:
@mkdir -p bin && go build -o bin/cpfgen .
test:
@go test -v ./...
clean:
@rm -rf bin