json/Makefile.am

29 lines
1.4 KiB
Makefile
Raw Normal View History

2014-12-29 21:13:03 +01:00
noinst_PROGRAMS = json_unit json_parser
2014-12-28 09:11:01 +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
2013-07-04 10:49:03 +02:00
2014-12-28 09:11:01 +01:00
json_unit_SOURCES = src/JSON.cc src/JSON.h test/catch.hpp test/JSON_unit.cc
json_unit_CXXFLAGS = $(FLAGS) -std=c++11
json_unit_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/test -Dprivate=public
2013-07-04 10:49:03 +02:00
2014-12-29 21:13:03 +01:00
json_parser_SOURCES = src/JSON.cc src/JSON.h benchmark/parse.cc
2014-12-30 10:54:01 +01:00
json_parser_CXXFLAGS = -O3 -std=c++11 -flto
2014-12-29 21:13:03 +01:00
json_parser_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/benchmark
2014-12-28 09:11:01 +01:00
cppcheck:
cppcheck --enable=all --inconclusive --std=c++11 src/JSON.*
2013-12-11 10:50:50 +01:00
2013-07-04 10:49:03 +02:00
svn-clean: maintainer-clean
2014-12-28 09:11:01 +01:00
rm -fr configure INSTALL aclocal.m4 build-aux depcomp install-sh missing test-driver
2013-07-04 10:49:03 +02:00
for DIR in $(DIST_SUBDIRS) .; do rm -f $$DIR/Makefile.in; done
2013-12-11 10:23:31 +01:00
2014-12-28 09:11:01 +01:00
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 \
$(SOURCES)
2014-12-30 10:54:01 +01:00
parser:
make CXXFLAGS="" json_parser