Makefile 4.1 KB
Newer Older
N
Niels 已提交
1
.PHONY: pretty clean ChangeLog.md
N
Niels 已提交
2

N
Niels 已提交
3 4
# used programs
RE2C = re2c
N
Niels 已提交
5
SED = sed
N
Niels 已提交
6

N
Niels 已提交
7
# main target
8 9
all:
	$(MAKE) -C test
N
Niels 已提交
10 11 12

# clean up
clean:
N
Niels 已提交
13
	rm -fr json_unit json_benchmarks fuzz fuzz-testing *.dSYM
N
Niels 已提交
14
	rm -fr benchmarks/files/numbers/*.json
N
Niels 已提交
15
	$(MAKE) clean -Cdoc
N
Niels 已提交
16
	$(MAKE) clean -Ctest
N
Niels 已提交
17

N
Niels 已提交
18 19 20 21 22

##########################################################################
# unit tests
##########################################################################

N
Niels 已提交
23 24
# build unit tests
json_unit:
25
	@$(MAKE) json_unit -C test
N
Niels 已提交
26

N
Niels 已提交
27
# run unit tests
28 29
check:
	$(MAKE) check -C test
N
Niels 已提交
30

31 32
check-fast:
	$(MAKE) check -C test TEST_PATTERN=""
N
Niels 已提交
33

N
Niels 已提交
34

N
Niels 已提交
35 36 37 38 39 40
##########################################################################
# documentation tests
##########################################################################

# compile example files and check output
doctest:
N
Niels 已提交
41 42 43
	$(MAKE) check_output -C doc


44 45 46 47
##########################################################################
# fuzzing
##########################################################################

N
Niels 已提交
48 49 50 51
# the overall fuzz testing target
fuzz_testing:
	rm -fr fuzz-testing
	mkdir -p fuzz-testing fuzz-testing/testcases fuzz-testing/out
52
	$(MAKE) parse_afl_fuzzer -C test CXX=afl-clang++
N
Niels Lohmann 已提交
53
	mv test/parse_afl_fuzzer fuzz-testing/fuzzer
54
	find test/data/json_tests -size -5k -name *json | xargs -I{} cp "{}" fuzz-testing/testcases
55
	@echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer"
N
Niels 已提交
56

N
Niels Lohmann 已提交
57 58 59 60 61 62 63 64
fuzz_testing_cbor:
	rm -fr fuzz-testing
	mkdir -p fuzz-testing fuzz-testing/testcases fuzz-testing/out
	$(MAKE) parse_cbor_fuzzer -C test CXX=afl-clang++
	mv test/parse_cbor_fuzzer fuzz-testing/fuzzer
	find test/data -size -5k -name *cbor | xargs -I{} cp "{}" fuzz-testing/testcases
	@echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer"

65

N
Niels 已提交
66 67 68
##########################################################################
# static analyzer
##########################################################################
N
Niels 已提交
69

N
Niels 已提交
70
# call cppcheck on the main header file
N
Niels 已提交
71
cppcheck:
N
Niels 已提交
72
	cppcheck --enable=warning --inconclusive --force --std=c++11 src/json.hpp --error-exitcode=1
N
Niels 已提交
73

N
Niels 已提交
74 75 76
clang_sanitize: clean
	CXX=clang++ CXXFLAGS="-g -O2 -fsanitize=address -fsanitize=undefined -fno-omit-frame-pointer" $(MAKE)

77

N
Niels 已提交
78 79 80 81 82 83
##########################################################################
# maintainer targets
##########################################################################

# create scanner with re2c
re2c: src/json.hpp.re2c
N
Niels 已提交
84
	$(RE2C) -W --utf-8 --encoding-policy fail --bit-vectors --nested-ifs --no-debug-info $< | $(SED) '1d' > src/json.hpp
N
Niels 已提交
85

N
Niels 已提交
86 87 88 89 90 91
# 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 \
N
Niels 已提交
92
	   --lineend=linux --preserve-date --suffix=none --formatted \
93 94
	   src/json.hpp src/json.hpp.re2c test/src/*.cpp \
	   benchmarks/benchmarks.cpp doc/examples/*.cpp
N
Niels 已提交
95

N
Niels 已提交
96 97 98 99

##########################################################################
# benchmarks
##########################################################################
N
Niels 已提交
100 101

# benchmarks
N
Niels 已提交
102
json_benchmarks: benchmarks/benchmarks.cpp benchmarks/benchpress.hpp benchmarks/cxxopts.hpp src/json.hpp
N
Niels 已提交
103
	cd benchmarks/files/numbers ; python generate.py
104
	$(CXX) -std=c++11 -pthread $(CXXFLAGS) -DNDEBUG -O3 -flto -I src -I benchmarks $< $(LDFLAGS) -o $@
N
Niels 已提交
105
	./json_benchmarks
N
Niels 已提交
106 107 108 109 110 111


##########################################################################
# changelog
##########################################################################

N
Niels 已提交
112 113
NEXT_VERSION ?= "unreleased"

N
Niels 已提交
114
ChangeLog.md:
N
Niels 已提交
115
	github_changelog_generator -o ChangeLog.md --simple-list --release-url https://github.com/nlohmann/json/releases/tag/%s --future-release $(NEXT_VERSION)
N
Niels 已提交
116
	gsed -i 's|https://github.com/nlohmann/json/releases/tag/HEAD|https://github.com/nlohmann/json/tree/HEAD|' ChangeLog.md
N
Niels 已提交
117
	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