blob: ca6213cfff14af209f802f8759b65dac4430284f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Import('*')
env = env.Clone()
identity = env.ConvenienceLibrary(
target = 'identity',
source = [
'glhd_context.c',
'glhd_objects.c',
'glhd_screen.c',
])
Export('identity')
|