2016-04-30 19:25:30 +03:00
.PHONY : pretty clean ChangeLog .md
2015-08-21 20:05:47 +03:00
2016-04-30 19:25:30 +03:00
# used programs
RE2C = re2c
SED = sed
2015-02-14 00:12:27 +03:00
2016-04-30 19:25:30 +03:00
# main target
all : json_unit
2015-02-14 00:12:27 +03:00
2016-04-30 19:25:30 +03:00
# clean up
2016-04-30 03:44:51 +03:00
clean :
2016-04-30 19:25:30 +03:00
rm -fr json_unit json_benchmarks fuzz fuzz-testing *.dSYM
2015-06-21 22:24:03 +03:00
2016-04-30 19:25:30 +03:00
##########################################################################
# unit tests
##########################################################################
2015-06-21 22:24:03 +03:00
2016-04-30 19:25:30 +03:00
# additional flags
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
2015-06-21 22:24:03 +03:00
2016-04-30 19:25:30 +03:00
# build unit tests
json_unit : test /unit .cpp src /json .hpp test /catch .hpp
$( CXX) -std= c++11 $( CXXFLAGS) $( FLAGS) $( CPPFLAGS) -I src -I test $< $( LDFLAGS) -o $@
2015-02-14 00:12:27 +03:00
2015-06-21 13:45:46 +03:00
2016-04-30 19:25:30 +03:00
##########################################################################
# documentation tests
##########################################################################
2016-02-14 18:42:48 +03:00
2016-04-30 19:25:30 +03:00
# compile example files and check output
doctest :
make check_output -C doc
2016-02-14 18:42:48 +03:00
2016-04-30 19:25:30 +03:00
##########################################################################
# fuzzing
##########################################################################
2016-02-12 12:35:08 +03:00
2016-04-30 19:25:30 +03:00
# the overall fuzz testing target
fuzz_testing :
rm -fr fuzz-testing
mkdir -p fuzz-testing fuzz-testing/testcases fuzz-testing/out
$( MAKE) fuzz CXX = afl-clang++
mv fuzz fuzz-testing
find test/json_tests -size -5k -name *json | xargs -I{ } cp "{}" fuzz-testing/testcases
@echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzz"
2016-02-14 20:38:29 +03:00
2016-04-30 19:25:30 +03:00
# the fuzzer binary
fuzz : test /fuzz .cpp src /json .hpp
$( CXX) -std= c++11 $( CXXFLAGS) $( FLAGS) $( CPPFLAGS) -I src $< $( LDFLAGS) -o $@
2016-02-14 20:38:29 +03:00
2016-02-12 12:35:08 +03:00
2016-04-30 19:25:30 +03:00
##########################################################################
# static analyzer
##########################################################################
2015-02-14 00:12:27 +03:00
2016-04-30 19:25:30 +03:00
# call cppcheck on the main header file
cppcheck :
cppcheck --enable= all --inconclusive --std= c++11 src/json.hpp
2015-02-14 00:12:27 +03:00
2015-06-21 22:24:03 +03:00
2016-04-30 19:25:30 +03:00
##########################################################################
# maintainer targets
##########################################################################
2015-06-21 22:24:03 +03:00
2016-04-30 19:25:30 +03:00
# create scanner with re2c
re2c : src /json .hpp .re 2c
$( RE2C) --bit-vectors --nested-ifs --no-debug-info $< | $( SED) '1d' > src/json.hpp
2015-06-21 22:24:03 +03:00
2016-04-30 19:25:30 +03:00
# pretty printer
pretty :
astyle --style= allman --indent= spaces = 4 --indent-modifiers \
--indent-switches --indent-preproc-block --indent-preproc-define \
--indent-col1-comments --pad-oper --pad-header --align-pointer= type \
--align-reference= type --add-brackets --convert-tabs --close-templates \
--lineend= linux --preserve-date --suffix= none --formatted \
src/json.hpp src/json.hpp.re2c test/unit.cpp test/fuzz.cpp benchmarks/benchmarks.cpp doc/examples/*.cpp
2015-06-21 01:59:33 +03:00
2015-06-21 22:24:03 +03:00
2016-04-30 19:25:30 +03:00
##########################################################################
# benchmarks
##########################################################################
2015-06-03 00:57:45 +03:00
2016-04-30 19:25:30 +03:00
# benchmarks
json_benchmarks : benchmarks /benchmarks .cpp benchmarks /benchpress .hpp benchmarks /cxxopts .hpp src /json .hpp
$( CXX) -std= c++11 $( CXXFLAGS) -O3 -flto -I src -I benchmarks $< $( LDFLAGS) -o $@
./json_benchmarks
2016-01-27 00:59:57 +03:00
2016-04-30 19:25:30 +03:00
##########################################################################
# changelog
##########################################################################
2016-01-27 00:59:57 +03:00
2016-04-30 19:25:30 +03:00
ChangeLog.md :
github_changelog_generator -o ChangeLog.md --simple-list --release-url https://github.com/nlohmann/json/releases/tag/%s
gsed -i 's|https://github.com/nlohmann/json/releases/tag/HEAD|https://github.com/nlohmann/json/tree/HEAD|' ChangeLog.md
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