2016-01-26 21:59:57 +00:00
.PHONY : pretty clean ChangeLog .md
2015-08-21 17:05:47 +00:00
2015-02-13 21:12:27 +00:00
# used programs
RE2C = re2c
2015-04-26 11:37:01 +00:00
SED = sed
2015-02-13 21:12:27 +00:00
2015-06-21 19:24:03 +00:00
# main target
2015-02-13 21:12:27 +00:00
all : json_unit
# clean up
clean :
2015-06-02 21:57:45 +00:00
rm -f json_unit json_benchmarks
2015-02-13 21:12:27 +00:00
2015-06-21 19:24:03 +00:00
##########################################################################
# unit tests
##########################################################################
# additional flags
2015-12-14 15:58:49 +00:00
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 19:24:03 +00:00
2015-02-13 21:12:27 +00:00
# build unit tests
json_unit : test /unit .cpp src /json .hpp test /catch .hpp
2015-04-14 14:02:49 +00:00
$( CXX) -std= c++11 $( CXXFLAGS) $( FLAGS) $( CPPFLAGS) -I src -I test $< $( LDFLAGS) -o $@
2015-02-13 21:12:27 +00:00
2015-06-21 10:45:46 +00:00
2015-06-21 19:24:03 +00:00
##########################################################################
# static analyzer
##########################################################################
2015-02-13 21:12:27 +00:00
2015-06-21 19:24:03 +00:00
# call cppcheck on the main header file
2015-02-13 21:12:27 +00:00
cppcheck :
cppcheck --enable= all --inconclusive --std= c++11 src/json.hpp
2015-06-21 19:24:03 +00:00
##########################################################################
# maintainer targets
##########################################################################
# create scanner with re2c
re2c : src /json .hpp .re 2c
$( RE2C) -b -s -i --no-generation-date $< | $( SED) '1d' > src/json.hpp
2015-02-13 21:12:27 +00: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 \
2015-06-21 20:42:32 +00:00
src/json.hpp src/json.hpp.re2c test/unit.cpp benchmarks/benchmarks.cpp doc/examples/*.cpp
2015-06-20 22:59:33 +00:00
2015-06-21 19:24:03 +00:00
##########################################################################
# benchmarks
##########################################################################
2015-06-02 21:57:45 +00:00
# benchmarks
2015-06-03 21:34:10 +00:00
json_benchmarks : benchmarks /benchmarks .cpp benchmarks /benchpress .hpp benchmarks /cxxopts .hpp src /json .hpp
2015-06-02 21:57:45 +00:00
$( CXX) -std= c++11 $( CXXFLAGS) -O3 -flto -I src -I benchmarks $< $( LDFLAGS) -o $@
./json_benchmarks
2016-01-26 21:59:57 +00:00
##########################################################################
# changelog
##########################################################################
ChangeLog.md :
2016-01-26 22:30:51 +00:00
github_changelog_generator -o ChangeLog.md --simple-list --release-url https://github.com/nlohmann/json/releases/tag/%s
2016-01-26 22:10:52 +00:00
gsed -i 's|https://github.com/nlohmann/json/releases/tag/HEAD|https://github.com/nlohmann/json/tree/HEAD|' ChangeLog.md
2016-01-26 22:27:07 +00: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