.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