Makefile: added nice variable
tho [Thu, 9 Jul 2009 09:56:44 +0000 (09:56 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1262 270642c3-0616-0410-b53a-bc976706d245

Makefile

index eeb0d80..acbd708 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,9 @@
 #----------------------------------------------------------------------
 CONCURRENCY_LEVEL ?= $(shell grep process /proc/cpuinfo | wc -l)
 
+ifdef nice
+  SCONS_ARGS += CXX='nice -n $(nice) g++'
+endif
 ifdef final
   SCONS_ARGS += "final="$(final)
 endif
@@ -40,10 +43,8 @@ all_docs all_tests all:
 #----------------------------------------------------------------------
 # remote compile targets
 #----------------------------------------------------------------------
-JOBS := 1
-
 all@% all_docs@% all_tests@% build@%:
-       ssh $* "cd `pwd` && $(MAKE) -j $(JOBS) $(firstword $(subst @, ,$@))"
+       ssh $* "cd `pwd` && $(MAKE) SCONS_ARGS=\"$(SCONS_ARGS)\" $(firstword $(subst @, ,$@))"
 
        
 #----------------------------------------------------------------------