diff --git a/Makefile b/Makefile deleted file mode 100644 index 3032c9d..0000000 --- a/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -.PHONY: build -build: - go build . - make linux - make mac - -.PHONY: linux -linux: - env GOOS=linux GOARCH=amd64 go build -o kafka-connect-cli.linux . - -.PHONY: darwin -mac: - env GOOS=darwin GOARCH=amd64 go build -o kafka-connect-cli.darwin .