Rename senfscons to site_scons and move python files arround
[senf.git] / site_scons / site_tools / PhonyTarget.py
1
2 def PhonyTarget(env, target, source = None, action = None):
3     return env.AlwaysBuild(env.Alias(target, source, env.Action(action)))
4
5 def generate(env):
6     env['BUILDERS']['PhonyTarget'] = PhonyTarget
7
8 def exists(env):
9     return True