From: Matthijs Kooijman Date: Wed, 2 Dec 2009 12:33:41 +0000 (+0100) Subject: Build the pdf only once each time. X-Git-Tag: final-thesis~119 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fmaster-project%2Freport.git;a=commitdiff_plain;h=ee64b2e24b792c580ba5c0bfa38c5ed642800945 Build the pdf only once each time. This might leave incorrect references, but speeds up the process. --- diff --git a/SConstruct b/SConstruct index fccd78a..b4895e8 100644 --- a/SConstruct +++ b/SConstruct @@ -13,7 +13,7 @@ DEFAULT_TARGET = 'Report.pdf' env = Environment() ## Context MkIV Builder: -contextBuilder = Builder(action='nice texexec --lua $SOURCE', +contextBuilder = Builder(action='nice texexec --lua $SOURCE --once', suffix='.pdf', src_suffix='.tex') env.Append(BUILDERS={'Context': contextBuilder})