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
|
|
|
|
|
|
|
# additional flags
|
2015-03-23 22:03:48 +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-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
|
|
|
|
|
|
|
# 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 07:44:12 +00:00
|
|
|
# execute the unit tests and check documentation
|
2015-06-21 00:14:01 +00:00
|
|
|
check: json_unit
|
|
|
|
./json_unit "*"
|
|
|
|
make check -C docs/examples
|
|
|
|
|
2015-06-21 07:44:12 +00:00
|
|
|
doxygen: update_docs src/json.hpp
|
|
|
|
doxygen
|
|
|
|
gsed -i 's@< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberFloatType, AllocatorType >@@g' html/*.html
|
|
|
|
gsed -i 's@< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberFloatType, AllocatorType >@@g' html/*.html
|
|
|
|
|
|
|
|
docset: update_docs src/json.hpp
|
2015-06-21 00:14:01 +00:00
|
|
|
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
|
2015-06-21 07:44:12 +00:00
|
|
|
gsed -i 's@HTML_EXTRA_STYLESHEET = docs/mylayout.css@HTML_EXTRA_STYLESHEET = docs/mylayout_docset.css@' Doxyfile_docset
|
2015-06-21 00:14:01 +00:00
|
|
|
rm -fr html *.docset
|
|
|
|
doxygen Doxyfile_docset
|
2015-06-21 07:44:12 +00:00
|
|
|
gsed -i 's@< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberFloatType, AllocatorType >@@g' html/*.html
|
|
|
|
gsed -i 's@< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberFloatType, AllocatorType >@@g' html/*.html
|
2015-06-21 00:14:01 +00:00
|
|
|
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
|
|
|
|
|
2015-06-21 10:45:46 +00:00
|
|
|
# update online documentation
|
|
|
|
update_doxygen_online:
|
|
|
|
make re2c pretty doxygen
|
|
|
|
rm -fr /tmp/github-html
|
|
|
|
cp -r html /tmp/github-html
|
|
|
|
git checkout gh-pages
|
|
|
|
rm -fr html
|
|
|
|
mv /tmp/github-html html
|
2015-06-21 11:14:39 +00:00
|
|
|
cd html ; -git rm $(shell git ls-files --deleted)
|
2015-06-21 10:48:18 +00:00
|
|
|
git commit -m "Doxygen update"
|
2015-06-21 10:45:46 +00:00
|
|
|
git checkout master
|
|
|
|
|
2015-02-13 21:12:27 +00:00
|
|
|
# create scanner with re2c
|
2015-04-27 20:35:45 +00:00
|
|
|
re2c: src/json.hpp.re2c
|
2015-02-13 21:12:27 +00:00
|
|
|
$(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 \
|
2015-06-20 22:59:33 +00:00
|
|
|
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
|
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
|