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