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:
|
|
|
|
rm -f json_unit
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
# 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 \
|
|
|
|
src/json.hpp src/json.hpp.re2c test/unit.cpp
|