X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Makefile;h=532d737a676684ebe95093c189992f4eedb8f7de;hb=3863d46dd898b7bc35ea8c6ccd8563b18762a6b6;hp=9431cfe0c450d6b5b0c434fe720ce028acfdf795;hpb=e538a1cc66b4998b7ed7cb57b92297392c0c36d7;p=senf.git diff --git a/Makefile b/Makefile index 9431cfe..532d737 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,19 @@ #---------------------------------------------------------------------- # Some SCONS shortcuts #---------------------------------------------------------------------- +CONCURRENCY_LEVEL ?= $(shell grep process /proc/cpuinfo | wc -l) -CONCURRENCY_LEVEL ?= 1 +ifdef final + SCONS_ARGS += "final="$(final) +endif +ifdef debug + SCONS_ARGS += "debug="$(debug) +endif +ifdef profile + SCONS_ARGS += "profile="$(profile) +endif -SCONS=scons -j $(CONCURRENCY_LEVEL) +SCONS=scons -j $(CONCURRENCY_LEVEL) $(SCONS_ARGS) default: build @@ -13,14 +22,38 @@ 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) $@ + +%/test %/doc: + $(SCONS) $@ + +%/build: + $(SCONS) $* + #---------------------------------------------------------------------- -# Subversion stuff +# 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