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.

104 lines
2.8 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. tools: certstrap protobuf goodman
  40. check: check_tools
  41. check_tools:
  42. @# https://stackoverflow.com/a/25668869
  43. @echo "Found tools: $(foreach tool,$(notdir $(GOTOOLS)),\
  44. $(if $(shell which $(tool)),$(tool),$(error "No $(tool) in PATH")))"
  45. certstrap: $(CERTSTRAP)
  46. $(CERTSTRAP):
  47. @echo "Get Certstrap"
  48. @go get github.com/square/certstrap@v1.2.0
  49. protobuf: $(PROTOBUF)
  50. $(PROTOBUF):
  51. @echo "Get GoGo Protobuf"
  52. @go get github.com/gogo/protobuf/protoc-gen-gogo@v1.3.1
  53. goodman: $(GOODMAN)
  54. $(GOODMAN):
  55. @echo "Get Goodman"
  56. @go get github.com/snikch/goodman/cmd/goodman@10e37e294daa3c9a90abded60ff9924bafab3888
  57. tools-clean:
  58. rm -f $(CERTSTRAP) $(PROTOBUF) $(GOX) $(GOODMAN)
  59. rm -f tools-stamp
  60. rm -rf /usr/local/include/google/protobuf
  61. rm -f /usr/local/bin/protoc
  62. ###
  63. # Non Go tools
  64. ###
  65. # Choose protobuf binary based on OS (only works for 64bit Linux and Mac).
  66. # NOTE: On Mac, installation via brew (brew install protoc) might be favorable.
  67. PROTOC_ZIP=""
  68. ifneq ($(OS),Windows_NT)
  69. UNAME_S := $(shell uname -s)
  70. ifeq ($(UNAME_S),Linux)
  71. PROTOC_ZIP="protoc-3.10.1-linux-x86_64.zip"
  72. endif
  73. ifeq ($(UNAME_S),Darwin)
  74. PROTOC_ZIP="protoc-3.10.1-osx-x86_64.zip"
  75. endif
  76. endif
  77. protoc:
  78. @echo "Get Protobuf"
  79. @echo "In case of any errors, please install directly from https://github.com/protocolbuffers/protobuf/releases"
  80. @curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v3.10.1/$(PROTOC_ZIP)
  81. @unzip -o $(PROTOC_ZIP) -d /usr/local bin/protoc
  82. @unzip -o $(PROTOC_ZIP) -d /usr/local 'include/*'
  83. @rm -f $(PROTOC_ZIP)
  84. .PHONY: all tools tools-clean protoc