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