From: jmo Date: Wed, 12 Nov 2008 14:26:34 +0000 (+0000) Subject: Makefile fix: pass final=1 thru scons X-Git-Url: http://g0dil.de/git?p=senf.git;a=commitdiff_plain;h=aa6d4257b224443aebac2a9506f633a4c6b0cf1e Makefile fix: pass final=1 thru scons git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@956 270642c3-0616-0410-b53a-bc976706d245 --- diff --git a/Makefile b/Makefile index e628a47..250155c 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,11 @@ CONCURRENCY_LEVEL ?= 2 -SCONS=scons -j $(CONCURRENCY_LEVEL) +ifdef final + FINAL = "final=1" +endif + +SCONS=scons -j $(CONCURRENCY_LEVEL) $(FINAL) default: build