Makefile 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. PKG=github.com/mailru/easyjson
  2. GOPATH:=$(PWD)/.root:$(GOPATH)
  3. export GOPATH
  4. all: test
  5. .root/src/$(PKG):
  6. mkdir -p $@
  7. for i in $$PWD/* ; do ln -s $$i $@/`basename $$i` ; done
  8. root: .root/src/$(PKG)
  9. clean:
  10. rm -rf .root
  11. rm -rf tests/*_easyjson.go
  12. build:
  13. go build -i -o .root/bin/easyjson $(PKG)/easyjson
  14. generate: root build
  15. .root/bin/easyjson -stubs \
  16. .root/src/$(PKG)/tests/snake.go \
  17. .root/src/$(PKG)/tests/data.go \
  18. .root/src/$(PKG)/tests/omitempty.go \
  19. .root/src/$(PKG)/tests/nothing.go \
  20. .root/src/$(PKG)/tests/named_type.go \
  21. .root/src/$(PKG)/tests/custom_map_key_type.go \
  22. .root/src/$(PKG)/tests/embedded_type.go
  23. .root/bin/easyjson -all .root/src/$(PKG)/tests/data.go
  24. .root/bin/easyjson -all .root/src/$(PKG)/tests/nothing.go
  25. .root/bin/easyjson -all .root/src/$(PKG)/tests/errors.go
  26. .root/bin/easyjson -snake_case .root/src/$(PKG)/tests/snake.go
  27. .root/bin/easyjson -omit_empty .root/src/$(PKG)/tests/omitempty.go
  28. .root/bin/easyjson -build_tags=use_easyjson .root/src/$(PKG)/benchmark/data.go
  29. .root/bin/easyjson .root/src/$(PKG)/tests/nested_easy.go
  30. .root/bin/easyjson .root/src/$(PKG)/tests/named_type.go
  31. .root/bin/easyjson .root/src/$(PKG)/tests/custom_map_key_type.go
  32. .root/bin/easyjson .root/src/$(PKG)/tests/embedded_type.go
  33. .root/bin/easyjson -disallow_unknown_fields .root/src/$(PKG)/tests/disallow_unknown.go
  34. test: generate root
  35. go test \
  36. $(PKG)/tests \
  37. $(PKG)/jlexer \
  38. $(PKG)/gen \
  39. $(PKG)/buffer
  40. go test -benchmem -tags use_easyjson -bench . $(PKG)/benchmark
  41. golint -set_exit_status .root/src/$(PKG)/tests/*_easyjson.go
  42. bench-other: generate root
  43. @go test -benchmem -bench . $(PKG)/benchmark
  44. @go test -benchmem -tags use_ffjson -bench . $(PKG)/benchmark
  45. @go test -benchmem -tags use_jsoniter -bench . $(PKG)/benchmark
  46. @go test -benchmem -tags use_codec -bench . $(PKG)/benchmark
  47. bench-python:
  48. benchmark/ujson.sh
  49. .PHONY: root clean generate test build