json/Makefile.am

22 lines
821 B
Makefile
Raw Normal View History

2013-07-04 10:49:03 +02:00
noinst_PROGRAMS = json json98
TESTS = ./json ./json98
json_SOURCES = src/JSON.cc src/JSON.h test/JSON_test.cc
json_CXXFLAGS = -std=c++11
json_CPPFLAGS = -I$(top_srcdir)/src
json98_SOURCES = src/JSON.cc src/JSON.h test/JSON_test.cc
json98_CXXFLAGS = -std=c++98
json98_CPPFLAGS = -I$(top_srcdir)/src
svn-clean: maintainer-clean
2013-12-11 10:23:31 +01:00
rm -fr configure INSTALL aclocal.m4 build-aux depcomp install-sh missing test-driver cover_html *.gcda *.gcno coverage*.info
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
cover:
make clean
make json98 CXXFLAGS+="--coverage -g -fprofile-arcs -ftest-coverage" CPPFLAGS+="-DNDEBUG"
./json98
lcov --capture --directory . --output-file coverage98.info
genhtml coverage*.info --output-directory cover_html --show-details --title "$(PACKAGE_STRING)" --legend --demangle-cpp