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.

98 lines
3.8 KiB

  1. .PHONY: pretty clean ChangeLog.md
  2. # used programs
  3. RE2C = re2c
  4. SED = sed
  5. # main target
  6. all: json_unit
  7. # clean up
  8. clean:
  9. rm -fr json_unit json_benchmarks fuzz fuzz-testing *.dSYM
  10. ##########################################################################
  11. # unit tests
  12. ##########################################################################
  13. # additional flags
  14. FLAGS = -Wall -Wextra -pedantic -Weffc++ -Wcast-align -Wcast-qual -Wctor-dtor-privacy -Wdisabled-optimization -Wformat=2 -Winit-self -Wmissing-declarations -Wmissing-include-dirs -Wold-style-cast -Woverloaded-virtual -Wredundant-decls -Wshadow -Wsign-conversion -Wsign-promo -Wstrict-overflow=5 -Wswitch -Wundef -Wno-unused -Wnon-virtual-dtor -Wreorder -Wdeprecated -Wfloat-equal
  15. # build unit tests (TODO: Does this want its own makefile?)
  16. json_unit: test/src/unit.cpp src/json.hpp test/src/catch.hpp
  17. $(CXX) -std=c++11 $(CXXFLAGS) $(FLAGS) $(CPPFLAGS) -I src -I test $< $(LDFLAGS) -o $@
  18. ##########################################################################
  19. # documentation tests
  20. ##########################################################################
  21. # compile example files and check output
  22. doctest:
  23. make check_output -C doc
  24. ##########################################################################
  25. # fuzzing
  26. ##########################################################################
  27. # the overall fuzz testing target
  28. fuzz_testing:
  29. rm -fr fuzz-testing
  30. mkdir -p fuzz-testing fuzz-testing/testcases fuzz-testing/out
  31. $(MAKE) fuzz CXX=afl-clang++
  32. mv fuzz fuzz-testing
  33. find test/data/json_tests -size -5k -name *json | xargs -I{} cp "{}" fuzz-testing/testcases
  34. @echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzz"
  35. # the fuzzer binary
  36. fuzz: test/src/fuzz.cpp src/json.hpp
  37. $(CXX) -std=c++11 $(CXXFLAGS) $(FLAGS) $(CPPFLAGS) -I src $< $(LDFLAGS) -o $@
  38. ##########################################################################
  39. # static analyzer
  40. ##########################################################################
  41. # call cppcheck on the main header file
  42. cppcheck:
  43. cppcheck --enable=all --inconclusive --std=c++11 src/json.hpp
  44. ##########################################################################
  45. # maintainer targets
  46. ##########################################################################
  47. # create scanner with re2c
  48. re2c: src/json.hpp.re2c
  49. $(RE2C) --bit-vectors --nested-ifs --no-debug-info $< | $(SED) '1d' > src/json.hpp
  50. # pretty printer
  51. pretty:
  52. astyle --style=allman --indent=spaces=4 --indent-modifiers \
  53. --indent-switches --indent-preproc-block --indent-preproc-define \
  54. --indent-col1-comments --pad-oper --pad-header --align-pointer=type \
  55. --align-reference=type --add-brackets --convert-tabs --close-templates \
  56. --lineend=linux --preserve-date --suffix=none --formatted \
  57. src/json.hpp src/json.hpp.re2c test/src/unit.cpp test/src/fuzz.cpp benchmarks/benchmarks.cpp doc/examples/*.cpp
  58. ##########################################################################
  59. # benchmarks
  60. ##########################################################################
  61. # benchmarks
  62. json_benchmarks: benchmarks/benchmarks.cpp benchmarks/benchpress.hpp benchmarks/cxxopts.hpp src/json.hpp
  63. $(CXX) -std=c++11 $(CXXFLAGS) -O3 -flto -I src -I benchmarks $< $(LDFLAGS) -o $@
  64. ./json_benchmarks
  65. ##########################################################################
  66. # changelog
  67. ##########################################################################
  68. ChangeLog.md:
  69. github_changelog_generator -o ChangeLog.md --simple-list --release-url https://github.com/nlohmann/json/releases/tag/%s
  70. gsed -i 's|https://github.com/nlohmann/json/releases/tag/HEAD|https://github.com/nlohmann/json/tree/HEAD|' ChangeLog.md
  71. gsed -i '2i All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).' ChangeLog.md