Remove silly tex/ directory.
[thesis.git] / src / figures / schematic / SConscript
1 from site_cons.site_init import link_wtk_graph
2
3 FIGURES = ['unfolding', 'afm', 'landscape-cant', 'monte-carlo']
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     deps = [wtk_graph]
12     if fig in ['unfolding', 'afm']:
13         deps.append('base_afm.asy')
14     env.Asymptote(['%s.asy' % fig] + deps)
15
16 # Pass back the modified environment.
17 Return('env')