X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Makefile;h=4020c80cd49b149dd45cf23fc4be81f502030c6e;hb=4b3185743975a8a34ad4a1a111a8119b729d49b2;hp=ae3cae08a6ce6acd15c34a17d41500427e4c935c;hpb=e898f807e2bdd260a0967051829fe307e2e4a0bd;p=senf.git diff --git a/Makefile b/Makefile index ae3cae0..4020c80 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,20 @@ #---------------------------------------------------------------------- # Some SCONS shortcuts #---------------------------------------------------------------------- -SCONS=scons + +CONCURRENCY_LEVEL ?= 2 + +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_ARGS) default: build @@ -10,28 +23,57 @@ 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_docs all_tests all: $(SCONS) $@ + +%/test %/doc: + $(SCONS) $@ + +%/build: + $(SCONS) $* + #---------------------------------------------------------------------- -# Subversion stuff +# test coverage #---------------------------------------------------------------------- -SVN_REVISION = $(shell svnversion) +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 test_coverage.info --base-directory . + rm include/senf/boost + lcov --output-file /tmp/test_coverage.info.tmp --extract test_coverage.info \*/senf/\* + lcov --output-file test_coverage.info --remove /tmp/test_coverage.info.tmp \*/senf/include/\* + rm /tmp/test_coverage.info.tmp + genhtml --output-directory doc/test_coverage --title "all_tests" test_coverage.info +#---------------------------------------------------------------------- +# Subversion stuff +#---------------------------------------------------------------------- svn_version: - @echo $(SVN_REVISION) + @svnversion #---------------------------------------------------------------------- # Building SENF requires some debian packages #---------------------------------------------------------------------- -DEB_BASE = scons build-essential binutils-dev -DEB_BOOST = libboost-dev libboost-test-dev -DEB_BOOST += libboost-date-time-dev libboost-regex-dev libboost-thread-dev -DEB_DOC = doxygen dia tidy xsltproc graphviz +DEB_BASE = build-essential + +# This line parses the 'Build-Depends' entry from debian/control +DEB_SENF = $(shell perl -an -F'[:,]' -e ' \ + BEGIN{ $$,=" " } \ + $$P=0 if /^\S/; \ + map {s/\(.*\)//} @F; \ + print @F if $$P; \ + if (/^Build-Depends:/) { print @F[1..$$\#F]; $$P=1 }' \ + debian/control | xargs echo) prerequisites: - aptitude install $(DEB_BASE) $(DEB_BOOST) $(DEB_DOC) + aptitude install $(DEB_BASE) $(DEB_SENF) package: $(SCONS) deb