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