radeon/llvm: Lower UDIV using the Selection DAG
[mesa.git] / src / SConscript
1 Import('*')
2
3
4 if env['platform'] == 'windows':
5 SConscript('getopt/SConscript')
6
7 SConscript('glsl/SConscript')
8
9 if env['hostonly']:
10 # We are just compiling the things necessary on the host for cross
11 # compilation
12 Return()
13
14
15 # When env['gles'] is set, the targets defined in mapi/glapi/SConscript are not
16 # used. libgl-xlib and libgl-gdi adapt themselves to use the targets defined
17 # in mapi/glapi-shared/SConscript. mesa/SConscript also adapts itself to
18 # enable OpenGL ES support.
19 SConscript('mapi/glapi/SConscript')
20 SConscript('mesa/SConscript')
21
22 SConscript('mapi/vgapi/SConscript')
23
24 if not env['embedded']:
25 if env['platform'] not in ('cygwin', 'darwin', 'haiku', 'windows'):
26 SConscript('glx/SConscript')
27 if env['platform'] not in ['darwin', 'haiku', 'sunos']:
28 SConscript('egl/main/SConscript')
29 if env['platform'] not in ['darwin']:
30 SConscript('glu/sgi/SConscript')
31
32 if env['gles']:
33 SConscript('mapi/shared-glapi/SConscript')
34
35 SConscript('gallium/SConscript')
36