diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9f36768 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +agentx-go diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..eeb34ca --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +.PHONY: build clean + +build: + GOOS=openbsd GOARCH=amd64 go build -o agentx-go main.go + +clean: + -rm agentx-go +