test/data/vclamp_jpk/README: Document sample versions
[hooke.git] / doc / SConstruct
index fb1abe5ef740cd5d936478b3915c9b9606706e54..a06f315aafc506bbfd4769da68cc0f840fb362c4 100644 (file)
@@ -104,6 +104,8 @@ env = Environment(ENV = {"PATH" : os.environ["PATH"]},
                   TEX = "latex", PDFTEX = "pdflatex",
                   tools = ['default', 'packaging'],
                   variables = config)
+if 'PYTHONPATH' in os.environ:
+    env['ENV']['PYTHONPATH'] = os.environ['PYTHONPATH']
 
 # Get configuration values from environment.
 sphinxconf = env["config"]
@@ -128,8 +130,8 @@ pkgtype = env["pkgtype"]
 
 # Dump internals if debugging.
 if debug:
-    print "Environment:"
-    print env.Dump()
+    print('Environment:')
+    print(env.Dump())
 
 # Get parameters from Sphinx config file.
 sphinxparams = {}
@@ -158,9 +160,9 @@ help_format = "   %-10s  %s\n"
 
 # Print banner if required.
 if not any(map(GetOption, ("silent", "clean", "help"))):
-    print
-    print "This is", description
-    print
+    print('')
+    print('This is {}'.format(description))
+    print('')
 
 # Build sphinx command-line options.
 opts = []
@@ -192,11 +194,13 @@ if texfilename:
 Help("Build targets:\n\n")
 
 if genrst != None:
-    source = env.Command('source', [], genrst)
+    source = env.Command('source', [], genrst, chdir = True)
     env.AlwaysBuild(source)
     env.Depends(srcdir, source)
 else:
-    Alias('source', srcdir)
+    source = env.Command(
+        'source', [],
+        '@echo "No reStructuredText generator (genrst) given."')
 
 for name, desc in targets:
     target = Dir(name, builddir)
@@ -206,8 +210,9 @@ for name, desc in targets:
         pass
     elif name not in latex_builders:
         # Standard Sphinx target.
-        env.Command(name, sphinxconf,
-                    sphinxcmd % locals(), chdir = True)
+        targets = env.Command(name, sphinxconf,
+                              sphinxcmd % locals(), chdir = True)
+        env.Depends(targets, source)
         env.AlwaysBuild(name)
         env.Alias(target, name)
     elif texinput:
@@ -220,7 +225,8 @@ for name, desc in targets:
         filename = project_tag + "." + name
         outfile = File(filename, latexdir)
 
-        buildfunc(outfile, texinput)
+        targets = buildfunc(outfile, texinput)
+        env.Depends(targets, source)
 
         # Copy built file to separate directory.
         target = File(filename, target)