X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Makefile;h=250155cb2b7e9bc64d93bff3858dfe216289a135;hb=cfd663c444dee7e03a4b7579b544db2524332bfb;hp=9431cfe0c450d6b5b0c434fe720ce028acfdf795;hpb=e538a1cc66b4998b7ed7cb57b92297392c0c36d7;p=senf.git diff --git a/Makefile b/Makefile index 9431cfe..250155c 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,13 @@ # Some SCONS shortcuts #---------------------------------------------------------------------- -CONCURRENCY_LEVEL ?= 1 +CONCURRENCY_LEVEL ?= 2 -SCONS=scons -j $(CONCURRENCY_LEVEL) +ifdef final + FINAL = "final=1" +endif + +SCONS=scons -j $(CONCURRENCY_LEVEL) $(FINAL) default: build @@ -16,6 +20,9 @@ clean: all_docs all_tests all: $(SCONS) $@ + +%/test %/doc: + $(SCONS) $@ #---------------------------------------------------------------------- # Subversion stuff