Remove silly tex/ directory.
[thesis.git] / src / figures / contour / SConscript
1 from site_cons.site_init import link_wtk_graph
2
3 FIGURES = ['contour']
4
5 # Get the passed in environment.
6 Import('env')
7
8 wtk_graph = link_wtk_graph(env)
9
10 for fig in FIGURES:
11     env.Asymptote(['%s.asy' % fig, wtk_graph])
12
13 # Pass back the modified environment.
14 Return('env')