1 # SPDX-License-Identifier: MIT
3 # Copyright The SCons Foundation
5 DefaultEnvironment(tools=[])
6 env = Environment(tools=[])
8 # We name the files 'Tfile' so that they will sort after the SConstruct
9 # file regardless of whether the test is being run on a case-sensitive
10 # or case-insensitive system.
12 env.Command('Tfile.out', 'Tfile.mid', Copy('$TARGET', '$SOURCE'))
13 env.Command('Tfile.mid', 'Tfile.in', Copy('$TARGET', '$SOURCE'))