We've already seen how you can use the &Alias; function to create a target named install: env = Environment() hello = env.Program('hello.c') env.Install('/usr/bin', hello) env.Alias('install', '/usr/bin') You can then use this alias on the command line to tell &SCons; more naturally that you want to install files: % scons install Install file: "hello" as "/usr/bin/hello" Like other &Builder; methods, though, the &Alias; method returns an object representing the alias being built. You can then use this object as input to anothother &Builder;. This is especially useful if you use such an object as input to another call to the &Alias; &Builder;, allowing you to create a hierarchy of nested aliases: env = Environment() p = env.Program('hello.c') l = env.Library('hello.c') env.Install('/usr/bin', p) env.Install('/usr/lib', l) ib = env.Alias('install-bin', '/usr/bin') il = env.Alias('install-lib', '/usr/lib') env.Alias('install', [ib, il]) This example defines separate install, install-bin, and install-lib aliases, allowing you finer control over what gets installed: % scons install-bin Install file: "hello" as "/usr/bin/hello" % scons install-lib Install file: "libhello.a" as "/usr/lib/libhello.a" % scons -c / % scons install Install file: "hello" as "/usr/bin/hello" Install file: "libhello.a" as "/usr/lib/libhello.a"