diff options
author | Vinson Lee <[email protected]> | 2010-08-14 12:18:51 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-08-14 12:18:51 -0700 |
commit | db0e24e34a4680c70038715f23847b9b2f7f75d3 (patch) | |
tree | 00935094f800b5bdbfeb68c46413a370a6d3dfec /src/gallium/winsys/r600/drm/SConscript | |
parent | 77458b565a531721904b7f3e31b71505e763b97a (diff) |
scons: Fix r600g build.
Diffstat (limited to 'src/gallium/winsys/r600/drm/SConscript')
-rw-r--r-- | src/gallium/winsys/r600/drm/SConscript | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/gallium/winsys/r600/drm/SConscript b/src/gallium/winsys/r600/drm/SConscript new file mode 100644 index 00000000000..2f20d9f8957 --- /dev/null +++ b/src/gallium/winsys/r600/drm/SConscript @@ -0,0 +1,25 @@ +Import('*') + +env = env.Clone() + +r600_sources = [ + 'bof.c', + 'r600_state.c', + 'radeon_ctx.c', + 'radeon_draw.c', + 'radeon_state.c', + 'radeon_bo.c', + 'radeon_pciid.c', + 'radeon.c', + 'r600_drm.c' +] + +env.ParseConfig('pkg-config --cflags libdrm_radeon') +env.Append(CPPPATH = '#/src/gallium/drivers/r600') + +r600winsys = env.ConvenienceLibrary( + target ='r600winsys', + source = r600_sources, +) + +Export('r600winsys') |