1Import('env') 2 3env = env.Clone() 4 5objs = env.Object(Glob('*.c')) 6objs += env.Object(Glob('*.S')) 7Return('objs') 8