2016-01-27 00:59:57 +03:00
.PHONY : pretty clean ChangeLog .md
2015-08-21 20:05:47 +03:00
2015-02-14 00:12:27 +03:00
# used programs
RE2C = re2c
2015-04-26 14:37:01 +03:00
SED = sed
2015-02-14 00:12:27 +03:00
2015-06-21 22:24:03 +03:00
# main target
2016-11-27 18:19:26 +03:00
all :
$( MAKE) -C test
2015-02-14 00:12:27 +03:00
# clean up
clean :
2016-02-14 20:38:29 +03:00
rm -fr json_unit json_benchmarks fuzz fuzz-testing *.dSYM
2016-07-21 00:06:45 +03:00
rm -fr benchmarks/files/numbers/*.json
2016-05-29 15:06:43 +03:00
$( MAKE) clean -Cdoc
2016-08-04 08:24:46 +03:00
$( MAKE) clean -Ctest
2015-02-14 00:12:27 +03:00
2015-06-21 22:24:03 +03:00
##########################################################################
# unit tests
##########################################################################
2016-08-04 08:24:46 +03:00
# build unit tests
json_unit :
2016-11-27 18:19:26 +03:00
@$( MAKE) json_unit -C test
2015-06-21 22:24:03 +03:00
2016-08-04 08:24:46 +03:00
# run unit tests
2016-11-27 18:19:26 +03:00
check :
$( MAKE) check -C test
2015-02-14 00:12:27 +03:00
2016-11-27 18:19:26 +03:00
check-fast :
$( MAKE) check -C test TEST_PATTERN = ""
2016-08-04 23:05:16 +03:00
2015-06-21 13:45:46 +03:00
2016-02-14 18:42:48 +03:00
##########################################################################
# documentation tests
##########################################################################
# compile example files and check output
doctest :
2016-05-29 15:06:43 +03:00
$( MAKE) check_output -C doc
2016-02-12 12:35:08 +03:00
##########################################################################
# fuzzing
##########################################################################
2016-02-14 20:38:29 +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
2016-05-11 03:25:54 +03:00
find test/data/json_tests -size -5k -name *json | xargs -I{ } cp "{}" fuzz-testing/testcases
2016-02-14 20:38:29 +03:00
@echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzz"
# the fuzzer binary
2016-05-11 03:25:54 +03:00
fuzz : test /src /fuzz .cpp src /json .hpp
2016-02-14 20:38:29 +03:00
$( CXX) -std= c++11 $( CXXFLAGS) $( FLAGS) $( CPPFLAGS) -I src $< $( LDFLAGS) -o $@
2016-02-12 12:35:08 +03:00
2015-06-21 22:24:03 +03:00
##########################################################################
# static analyzer
##########################################################################
2015-02-14 00:12:27 +03:00
2015-06-21 22:24:03 +03:00
# call cppcheck on the main header file
2015-02-14 00:12:27 +03:00
cppcheck :
2016-08-18 19:29:19 +03:00
cppcheck --enable= warning --inconclusive --force --std= c++11 src/json.hpp --error-exitcode= 1
2015-06-21 22:24:03 +03:00
2016-08-29 23:36:33 +03:00
clang_sanitize : clean
CXX = clang++ CXXFLAGS = "-g -O2 -fsanitize=address -fsanitize=undefined -fno-omit-frame-pointer" $( MAKE)
2016-11-27 18:19:26 +03:00
2015-06-21 22:24:03 +03:00
##########################################################################
# maintainer targets
##########################################################################
# create scanner with re2c
re2c : src /json .hpp .re 2c
2016-10-29 20:35:17 +03:00
$( RE2C) -W --utf-8 --encoding-policy fail --bit-vectors --nested-ifs --no-debug-info $< | $( SED) '1d' > src/json.hpp
2015-06-21 22:24:03 +03:00
2015-02-14 00:12:27 +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 \
2016-04-16 13:19:10 +03:00
--lineend= linux --preserve-date --suffix= none --formatted \
2016-08-04 22:55:47 +03:00
src/json.hpp src/json.hpp.re2c test/src/*.cpp \
benchmarks/benchmarks.cpp doc/examples/*.cpp
2015-06-21 01:59:33 +03:00
2015-06-21 22:24:03 +03:00
##########################################################################
# benchmarks
##########################################################################
2015-06-03 00:57:45 +03:00
# benchmarks
2015-06-04 00:34:10 +03:00
json_benchmarks : benchmarks /benchmarks .cpp benchmarks /benchpress .hpp benchmarks /cxxopts .hpp src /json .hpp
2016-07-21 00:06:45 +03:00
cd benchmarks/files/numbers ; python generate.py
2016-11-23 10:47:40 +03:00
$( CXX) -std= c++11 -pthread $( CXXFLAGS) -DNDEBUG -O3 -flto -I src -I benchmarks $< $( LDFLAGS) -o $@
2015-06-03 00:57:45 +03:00
./json_benchmarks
2016-01-27 00:59:57 +03:00
##########################################################################
# changelog
##########################################################################
2016-07-31 14:37:04 +03:00
NEXT_VERSION ?= "unreleased"
2016-01-27 00:59:57 +03:00
ChangeLog.md :
2016-07-31 14:37:04 +03:00
github_changelog_generator -o ChangeLog.md --simple-list --release-url https://github.com/nlohmann/json/releases/tag/%s --future-release $( NEXT_VERSION)
2016-01-27 01:10:52 +03:00
gsed -i 's|https://github.com/nlohmann/json/releases/tag/HEAD|https://github.com/nlohmann/json/tree/HEAD|' ChangeLog.md
2016-01-27 01:27:07 +03:00
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