Makefile 3.2 KB
Newer Older
N
Niels 已提交
1 2
# used programs
RE2C = re2c
N
Niels 已提交
3
SED = sed
N
Niels 已提交
4 5

# additional flags
6
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
N
Niels 已提交
7 8 9 10 11

all: json_unit

# clean up
clean:
N
Niels 已提交
12
	rm -f json_unit json_benchmarks
N
Niels 已提交
13 14 15

# build unit tests
json_unit: test/unit.cpp src/json.hpp test/catch.hpp
16
	$(CXX) -std=c++11 $(CXXFLAGS) $(FLAGS) $(CPPFLAGS) -I src -I test $< $(LDFLAGS) -o $@
N
Niels 已提交
17

N
Niels 已提交
18
# execute the unit tests and check documentation
N
Niels 已提交
19 20 21 22
check: json_unit
	./json_unit "*"
	make check -C docs/examples

N
Niels 已提交
23 24 25 26 27 28
doxygen: update_docs src/json.hpp
	doxygen
	gsed -i 's@&lt; ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberFloatType, AllocatorType &gt;@@g' html/*.html
	gsed -i 's@&lt;&#160;ObjectType,&#160;ArrayType,&#160;StringType,&#160;BooleanType,&#160;NumberIntegerType,&#160;NumberFloatType,&#160;AllocatorType&#160;&gt;@@g' html/*.html

docset: update_docs src/json.hpp
N
Niels 已提交
29 30 31 32 33 34
	cp Doxyfile Doxyfile_docset
	gsed -i 's/DISABLE_INDEX          = NO/DISABLE_INDEX          = YES/' Doxyfile_docset
	gsed -i 's/SEARCHENGINE           = YES/SEARCHENGINE           = NO/' Doxyfile_docset
	gsed -i 's/GENERATE_TREEVIEW      = YES/GENERATE_TREEVIEW      = NO/' Doxyfile_docset
	gsed -i 's/SEPARATE_MEMBER_PAGES  = NO/SEPARATE_MEMBER_PAGES  = YES/' Doxyfile_docset
	gsed -i 's/BINARY_TOC             = YES/BINARY_TOC             = NO/' Doxyfile_docset
N
Niels 已提交
35
	gsed -i 's@HTML_EXTRA_STYLESHEET  = docs/mylayout.css@HTML_EXTRA_STYLESHEET  = docs/mylayout_docset.css@' Doxyfile_docset
N
Niels 已提交
36 37
	rm -fr html *.docset
	doxygen Doxyfile_docset
N
Niels 已提交
38 39
	gsed -i 's@&lt; ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberFloatType, AllocatorType &gt;@@g' html/*.html
	gsed -i 's@&lt;&#160;ObjectType,&#160;ArrayType,&#160;StringType,&#160;BooleanType,&#160;NumberIntegerType,&#160;NumberFloatType,&#160;AllocatorType&#160;&gt;@@g' html/*.html
N
Niels 已提交
40 41 42 43 44
	make -C html
	mv html/*.docset .
	gsed -i 's@<string>doxygen</string>@<string>json</string>@' me.nlohmann.json.docset/Contents/Info.plist
	rm -fr Doxyfile_docset html

N
Niels 已提交
45
# create scanner with re2c
N
Niels 已提交
46
re2c: src/json.hpp.re2c
N
Niels 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59
	$(RE2C) -b -s -i --no-generation-date $< | $(SED) '1d' > src/json.hpp

# static analyser
cppcheck:
	cppcheck --enable=all --inconclusive --std=c++11 src/json.hpp

# 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 \
N
Niels 已提交
60 61 62 63 64
	   src/json.hpp src/json.hpp.re2c test/unit.cpp benchmarks/benchmarks.cpp docs/examples/*.cpp

# update docs
update_docs:
	make create -C docs/examples
N
Niels 已提交
65 66

# benchmarks
N
Niels 已提交
67
json_benchmarks: benchmarks/benchmarks.cpp benchmarks/benchpress.hpp benchmarks/cxxopts.hpp src/json.hpp
N
Niels 已提交
68 69
	$(CXX) -std=c++11 $(CXXFLAGS) -O3 -flto -I src -I benchmarks $< $(LDFLAGS) -o $@
	./json_benchmarks