X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Makefile;h=d838e92466909df02f1ed7766e91bd511330d251;hb=d80f142699130075658d6448c90adf71338f2c5a;hp=89b925491cced1e7f46245cfaf8ed2d33ee503ad;hpb=c3e26baef92c53af9826c2af3bfe4f3570c634bd;p=senf.git diff --git a/Makefile b/Makefile index 89b9254..d838e92 100644 --- a/Makefile +++ b/Makefile @@ -1,54 +1,74 @@ #---------------------------------------------------------------------- # Some SCONS shortcuts #---------------------------------------------------------------------- -SCONS=scons +CONCURRENCY_LEVEL ?= $(shell grep process /proc/cpuinfo | wc -l) -default: build +ifdef nice + SCONS_ARGS += CXX='nice -n $(nice) g++' +endif +ifdef final + SCONS_ARGS += "final="$(final) +endif +ifdef debug + SCONS_ARGS += "debug="$(debug) +endif -build: - $(SCONS) +SCONS=./tools/scons -j $(CONCURRENCY_LEVEL) $(SCONS_ARGS) + +# DON'T call this default ... default is a valid scons target ;-) +build: default + +TARGETS := prepare default examples all_tests all_docs all install_all \ + deb debsrc debbin linklint fixlinks valgrind lcov +ALLTARGETS := $(TARGETS) package build + +$(TARGETS): + $(SCONS) $@ clean: $(SCONS) --clean all -all_docs all_tests: - $(SCONS) $@ +package: deb +test_coverage: lcov #---------------------------------------------------------------------- -# Subversion stuff +# subdirectory build targets #---------------------------------------------------------------------- -SVN_REVISION = $(shell svnversion) -svn_version: - @echo $(SVN_REVISION) +%/test %/doc: + $(SCONS) $@ + +%/build: + $(SCONS) $* #---------------------------------------------------------------------- -# Building SENF requires some debian packages +# remote compile targets #---------------------------------------------------------------------- -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 -prerequisites: - aptitude install $(DEB_BASE) $(DEB_BOOST) $(DEB_DOC) +CWD = $(shell pwd) +$(ALLTARGETS:%=%@%): + ssh $* "cd $(CWD) && $(MAKE) SCONS_ARGS=\"$(SCONS_ARGS)\" $(firstword $(subst @, ,$@))" #---------------------------------------------------------------------- -# Debian package info +# Subversion stuff #---------------------------------------------------------------------- -PKG_NAME=senf-dev -PKG_ARCH=i386 -PKG_VERS=0.0.$(SVN_REVISION)-1 -PKG_FILE = $(PKG_NAME)-$(PKG_VERS)_$(PKG_ARCH).deb + +svn_version: + @v=`svnversion`; if [ $$v=="exported" ]; then gitsvnversion else echo $v; fi + +version: svn_version #---------------------------------------------------------------------- -# Debian package structure +# Building SENF requires some debian packages #---------------------------------------------------------------------- -DEB_TOP = ./debian -DEB_CTL = $(DEB_TOP)/DEBIAN -DEB_LIB = $(DEB_TOP)/usr/lib/senf -DEB_INC = $(DEB_TOP)/usr/include/senf -DEB_DOC = $(DEB_TOP)/usr/share/doc/senf +DEB_BASE = build-essential -package: - $(SCONS) deb +# This line parses the 'Build-Depends' entry from debian/control +DEB_SENF = $(shell perl -alnF'[:,]' -e ' \ + BEGIN{$$,=" "} END{splice @R,0,1; print @R} \ + map {s/\(.*\)|\|.*//; s/[ \n\t]//g} @F; \ + push @R,grep {/./} @F if (/^Build-Depends:/i.../^\S/)!~/(^|E0)$$/;' \ + debian/control) + +prerequisites: + aptitude install $(DEB_BASE) $(DEB_SENF)