Remove silly tex/ directory.
[thesis.git] / src / figures / calibration-concept-map / SConscript
1 # Get the passed in environment.
2 Import('env')
3
4 if 'DOT' in env:
5     env.Command('concept_map.png', 'concept_map.dot',
6                 'dot -Tpng $SOURCE > $TARGET',
7                 chdir=True)
8
9 # Pass back the modified environment.
10 Return('env')