diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3567d9e --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +all: build + +build: modules + CGO_ENABLED=0 go build -o ./bin/anon3anon ./cmd/anon3anon + +modules: + go mod tidy + +test: + go test ./..