json/Makefile

99 lines
3.8 KiB
Makefile
Raw Normal View History

2016-01-26 22:59:57 +01:00
.PHONY: pretty clean ChangeLog.md
2015-08-21 19:05:47 +02:00
2015-02-13 22:12:27 +01:00
# used programs
RE2C = re2c
2015-04-26 13:37:01 +02:00
SED = sed
2015-02-13 22:12:27 +01:00
2015-06-21 21:24:03 +02:00
# main target
2015-02-13 22:12:27 +01:00
all: json_unit
# clean up
clean:
2016-02-14 18:38:29 +01:00
rm -fr json_unit json_benchmarks fuzz fuzz-testing *.dSYM
2015-02-13 22:12:27 +01:00
2015-06-21 21:24:03 +02:00
##########################################################################
# unit tests
##########################################################################
# additional flags
2015-12-14 16:58:49 +01: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 21:24:03 +02:00
# build unit tests (TODO: Does this want its own makefile?)
json_unit: test/src/unit.cpp src/json.hpp test/src/catch.hpp
$(CXX) -std=c++11 $(CXXFLAGS) $(FLAGS) $(CPPFLAGS) -I src -I test $< $(LDFLAGS) -o $@
2015-02-13 22:12:27 +01:00
2015-06-21 12:45:46 +02:00
2016-02-14 16:42:48 +01:00
##########################################################################
# documentation tests
##########################################################################
# compile example files and check output
doctest:
make check_output -C doc
##########################################################################
# fuzzing
##########################################################################
2016-02-14 18:38:29 +01: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/data/json_tests -size -5k -name *json | xargs -I{} cp "{}" fuzz-testing/testcases
2016-02-14 18:38:29 +01:00
@echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzz"
# the fuzzer binary
fuzz: test/src/fuzz.cpp src/json.hpp
2016-02-14 18:38:29 +01:00
$(CXX) -std=c++11 $(CXXFLAGS) $(FLAGS) $(CPPFLAGS) -I src $< $(LDFLAGS) -o $@
2015-06-21 21:24:03 +02:00
##########################################################################
# static analyzer
##########################################################################
2015-02-13 22:12:27 +01:00
2015-06-21 21:24:03 +02:00
# call cppcheck on the main header file
2015-02-13 22:12:27 +01:00
cppcheck:
cppcheck --enable=all --inconclusive --std=c++11 src/json.hpp
2015-06-21 21:24:03 +02:00
##########################################################################
# maintainer targets
##########################################################################
# create scanner with re2c
re2c: src/json.hpp.re2c
2016-04-16 12:19:10 +02:00
$(RE2C) --bit-vectors --nested-ifs --no-debug-info $< | $(SED) '1d' > src/json.hpp
2015-06-21 21:24:03 +02:00
2015-02-13 22:12:27 +01: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 12:19:10 +02:00
--lineend=linux --preserve-date --suffix=none --formatted \
src/json.hpp src/json.hpp.re2c test/src/unit.cpp test/src/fuzz.cpp benchmarks/benchmarks.cpp doc/examples/*.cpp
2015-06-21 00:59:33 +02:00
2015-06-21 21:24:03 +02:00
##########################################################################
# benchmarks
##########################################################################
2015-06-02 23:57:45 +02:00
# benchmarks
2015-06-03 23:34:10 +02:00
json_benchmarks: benchmarks/benchmarks.cpp benchmarks/benchpress.hpp benchmarks/cxxopts.hpp src/json.hpp
2015-06-02 23:57:45 +02:00
$(CXX) -std=c++11 $(CXXFLAGS) -O3 -flto -I src -I benchmarks $< $(LDFLAGS) -o $@
./json_benchmarks
2016-01-26 22:59:57 +01:00
##########################################################################
# changelog
##########################################################################
ChangeLog.md:
2016-01-26 23:30:51 +01:00
github_changelog_generator -o ChangeLog.md --simple-list --release-url https://github.com/nlohmann/json/releases/tag/%s
2016-01-26 23:10:52 +01:00
gsed -i 's|https://github.com/nlohmann/json/releases/tag/HEAD|https://github.com/nlohmann/json/tree/HEAD|' ChangeLog.md
2016-01-26 23:27:07 +01: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