From: W. Trevor King Date: Wed, 28 Apr 2010 12:14:53 +0000 (-0400) Subject: Merge SCons transition with some Gnuplot->Asymptote work. X-Git-Tag: v1.0~406 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b405e4b450d911a81b11b3398a915a162e69227c;p=thesis.git Merge SCons transition with some Gnuplot->Asymptote work. Conflicts: tex/src/figures/cantilever-data/Makefile tex/src/figures/fit-space/Makefile tex/src/figures/fit-space/king_vs_best.gp --- b405e4b450d911a81b11b3398a915a162e69227c diff --cc tex/src/figures/fit-space/SConscript index 0000000,d8ff28f..4d5ace9 mode 000000,100644..100644 --- a/tex/src/figures/fit-space/SConscript +++ b/tex/src/figures/fit-space/SConscript @@@ -1,0 -1,8 +1,16 @@@ ++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') + -for gp in Glob('*.gp'): - env.Gnuplot(gp) ++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')