You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
2.7 KiB

  1. ###
  2. # Find OS and Go environment
  3. # GO contains the Go binary
  4. # FS contains the OS file separator
  5. ###
  6. ifeq ($(OS),Windows_NT)
  7. GO := $(shell where go.exe 2> NUL)
  8. FS := "\\"
  9. else
  10. GO := $(shell command -v go 2> /dev/null)
  11. FS := "/"
  12. endif
  13. ifeq ($(GO),)
  14. $(error could not find go. Is it in PATH? $(GO))
  15. endif
  16. GOPATH ?= $(shell $(GO) env GOPATH)
  17. GITHUBDIR := $(GOPATH)$(FS)src$(FS)github.com
  18. ###
  19. # Functions
  20. ###
  21. go_get = $(if $(findstring Windows_NT,$(OS)),\
  22. IF NOT EXIST $(GITHUBDIR)$(FS)$(1)$(FS) ( mkdir $(GITHUBDIR)$(FS)$(1) ) else (cd .) &\
  23. IF NOT EXIST $(GITHUBDIR)$(FS)$(1)$(FS)$(2)$(FS) ( cd $(GITHUBDIR)$(FS)$(1) && git clone https://github.com/$(1)/$(2) ) else (cd .) &\
  24. ,\
  25. mkdir -p $(GITHUBDIR)$(FS)$(1) &&\
  26. (test ! -d $(GITHUBDIR)$(FS)$(1)$(FS)$(2) && cd $(GITHUBDIR)$(FS)$(1) && git clone https://github.com/$(1)/$(2)) || true &&\
  27. )\
  28. cd $(GITHUBDIR)$(FS)$(1)$(FS)$(2) && git fetch origin && git checkout -q $(3)
  29. mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
  30. mkfile_dir := $(shell cd $(shell dirname $(mkfile_path)); pwd)
  31. ###
  32. # Go tools
  33. ###
  34. TOOLS_DESTDIR ?= $(GOPATH)/bin
  35. CERTSTRAP = $(TOOLS_DESTDIR)/certstrap
  36. PROTOBUF = $(TOOLS_DESTDIR)/protoc
  37. GOODMAN = $(TOOLS_DESTDIR)/goodman
  38. all: tools
  39. check: check_tools
  40. check_tools:
  41. @# https://stackoverflow.com/a/25668869
  42. @echo "Found tools: $(foreach tool,$(notdir $(GOTOOLS)),\
  43. $(if $(shell which $(tool)),$(tool),$(error "No $(tool) in PATH")))"
  44. certstrap: $(CERTSTRAP)
  45. $(CERTSTRAP):
  46. @echo "Get Certstrap"
  47. @go get github.com/square/certstrap@v1.2.0
  48. protobuf: $(PROTOBUF)
  49. $(PROTOBUF):
  50. @echo "Get GoGo Protobuf"
  51. @go get github.com/gogo/protobuf/protoc-gen-gogo@v1.3.1
  52. goodman: $(GOODMAN)
  53. $(GOODMAN):
  54. @echo "Get Goodman"
  55. @go get github.com/snikch/goodman/cmd/goodman@10e37e294daa3c9a90abded60ff9924bafab3888
  56. tools-clean:
  57. rm -f $(CERTSTRAP) $(PROTOBUF) $(GOX) $(GOODMAN)
  58. rm -f tools-stamp
  59. rm -rf /usr/local/include/google/protobuf
  60. rm -f /usr/local/bin/protoc
  61. ###
  62. # Non Go tools
  63. ###
  64. # Choose protobuf binary based on OS (only works for 64bit Linux and Mac).
  65. # NOTE: On Mac, installation via brew (brew install protoc) might be favorable.
  66. PROTOC_ZIP=""
  67. ifneq ($(OS),Windows_NT)
  68. UNAME_S := $(shell uname -s)
  69. ifeq ($(UNAME_S),Linux)
  70. PROTOC_ZIP="protoc-3.10.1-linux-x86_64.zip"
  71. endif
  72. ifeq ($(UNAME_S),Darwin)
  73. PROTOC_ZIP="protoc-3.10.1-osx-x86_64.zip"
  74. endif
  75. endif
  76. protoc:
  77. @echo "Get Protobuf"
  78. @echo "In case of any errors, please install directly from https://github.com/protocolbuffers/protobuf/releases"
  79. @curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v3.10.1/$(PROTOC_ZIP)
  80. @unzip -o $(PROTOC_ZIP) -d /usr/local bin/protoc
  81. @unzip -o $(PROTOC_ZIP) -d /usr/local 'include/*'
  82. @rm -f $(PROTOC_ZIP)
  83. .PHONY: all tools tools-clean protoc