X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Makefile;h=acbd708458370ae5e93f03962ae78de141325a66;hb=25976ed67c66d30811fa0a01043e50347e9d1e69;hp=250155cb2b7e9bc64d93bff3858dfe216289a135;hpb=aa6d4257b224443aebac2a9506f633a4c6b0cf1e;p=senf.git diff --git a/Makefile b/Makefile index 250155c..acbd708 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,22 @@ #---------------------------------------------------------------------- # Some SCONS shortcuts #---------------------------------------------------------------------- +CONCURRENCY_LEVEL ?= $(shell grep process /proc/cpuinfo | wc -l) -CONCURRENCY_LEVEL ?= 2 - +ifdef nice + SCONS_ARGS += CXX='nice -n $(nice) g++' +endif ifdef final - FINAL = "final=1" + SCONS_ARGS += "final="$(final) +endif +ifdef debug + SCONS_ARGS += "debug="$(debug) +endif +ifdef profile + SCONS_ARGS += "profile="$(profile) endif -SCONS=scons -j $(CONCURRENCY_LEVEL) $(FINAL) +SCONS=scons -j $(CONCURRENCY_LEVEL) $(SCONS_ARGS) default: build @@ -17,6 +25,11 @@ build: clean: $(SCONS) --clean all + find ./ -name \*.gcno | xargs rm -f + find ./ -name \*.gcda | xargs rm -f + find ./ -name \*.gcov | xargs rm -f + rm -f test_coverage.info + rm -rf /doc/test_coverage all_docs all_tests all: $(SCONS) $@ @@ -24,10 +37,32 @@ all_docs all_tests all: %/test %/doc: $(SCONS) $@ +%/build: + $(SCONS) $* + #---------------------------------------------------------------------- -# Subversion stuff +# remote compile targets #---------------------------------------------------------------------- +all@% all_docs@% all_tests@% build@%: + ssh $* "cd `pwd` && $(MAKE) SCONS_ARGS=\"$(SCONS_ARGS)\" $(firstword $(subst @, ,$@))" + +#---------------------------------------------------------------------- +# test coverage +#---------------------------------------------------------------------- +test_coverage: + $(SCONS) debug=1 EXTRA_CCFLAGS="-fprofile-arcs -ftest-coverage" EXTRA_LIBS="gcov" all_tests + ln -s ../../boost/ include/senf/ # ugly work-around + lcov --directory . --capture --output-file /tmp/test_coverage.info --base-directory . +# lcov --output-file /tmp/test_coverage.info.tmp --extract test_coverage.info \*/senf/\* + lcov --output-file test_coverage.info --remove /tmp/test_coverage.info \*/include/\* + genhtml --output-directory doc/test_coverage --title "all_tests" test_coverage.info + rm /tmp/test_coverage.info + rm include/senf/boost + +#---------------------------------------------------------------------- +# Subversion stuff +#---------------------------------------------------------------------- svn_version: @svnversion