Add a PyMOL builder to SCons and generalize PYMOL_PATH setup.
[thesis.git] / src / figures / biotin-streptavidin / SConscript
1 # Get the passed in environment.
2 Import('env')
3
4 for pml in Glob('*.pml'):
5     env.Pymol(pml)
6
7 # Pass back the modified environment.
8 Return('env')