diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e30f11c --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +LDFLAGS?=--ldflags '-extldflags "-static"' +export CGO_ENABLED=0 + +build: decl + +decl: + go build -o decl $(LDFLAGS) ./cmd/cli/main.go