Conflicts:
tex/src/figures/cantilever-data/Makefile
tex/src/figures/fit-space/Makefile
tex/src/figures/fit-space/king_vs_best.gp
--- /dev/null
-for gp in Glob('*.gp'):
- env.Gnuplot(gp)
++from site_cons.site_init import link_wtk_graph
++
++
++FIGURES = ['king_vs_best', 'fit_valley'] #, 'mean_and_stdev']
++
+ # Get the passed in environment.
+ Import('env')
+
++wtk_graph = link_wtk_graph(env)
++
++for fig in FIGURES:
++ asyfile = '%s.asy' % fig
++ env.Asymptote([asyfile, wtk_graph])
+
+ # Pass back the modified environment.
+ Return('env')