diff options
author | Alan Hourihane <alanh@tungstengraphics.com> | 2008-08-17 20:17:18 +0100 |
---|---|---|
committer | Alan Hourihane <alanh@tungstengraphics.com> | 2008-08-17 20:17:18 +0100 |
commit | ccf1910dd4b2a8ccd04ddbdf725b6dd3f8026eee (patch) | |
tree | 53cf029a3bb113f3a8fd66eef378c515e18c447d /src/gallium/winsys/drm/intel/egl/SConscript | |
parent | 2037b1381c129c74ba87a092484258608583d34e (diff) |
consolidate intel directories.
we now have
src/gallium/winsys/drm/intel/{common,dri,egl}
Diffstat (limited to 'src/gallium/winsys/drm/intel/egl/SConscript')
-rw-r--r-- | src/gallium/winsys/drm/intel/egl/SConscript | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/gallium/winsys/drm/intel/egl/SConscript b/src/gallium/winsys/drm/intel/egl/SConscript new file mode 100644 index 0000000000..0ad19d42a8 --- /dev/null +++ b/src/gallium/winsys/drm/intel/egl/SConscript @@ -0,0 +1,39 @@ +Import('*') + +env = drienv.Clone() + +env.Append(CPPPATH = [ + '../intel', + 'server' +]) + +#MINIGLX_SOURCES = server/intel_dri.c + +DRIVER_SOURCES = [ + 'intel_winsys_pipe.c', + 'intel_winsys_softpipe.c', + 'intel_winsys_i915.c', + 'intel_batchbuffer.c', + 'intel_swapbuffers.c', + 'intel_context.c', + 'intel_lock.c', + 'intel_screen.c', + 'intel_batchpool.c', +] + +sources = \ + COMMON_GALLIUM_SOURCES + \ + COMMON_BM_SOURCES + \ + DRIVER_SOURCES + +drivers = [ + softpipe, + i915simple +] + +# TODO: write a wrapper function http://www.scons.org/wiki/WrapperFunctions +env.SharedLibrary( + target ='i915tex_dri.so', + source = sources, + LIBS = drivers + mesa + auxiliaries + env['LIBS'], +)
\ No newline at end of file |