14 lines
201 B
Makefile
14 lines
201 B
Makefile
.PHONY: build test bench clean
|
|
|
|
build:
|
|
go build -o himbocrypt cmd/himbocrypt/main.go
|
|
|
|
test:
|
|
go test ./pkg/engine/... -v
|
|
|
|
bench:
|
|
go test ./pkg/engine/... -bench=. -benchmem
|
|
|
|
clean:
|
|
rm -f himbocrypt
|