diff options
author | Chia-I Wu <[email protected]> | 2011-08-22 11:18:15 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2011-08-27 17:28:32 +0800 |
commit | f9b55e23aff663131b8814ec844e69b542eef5be (patch) | |
tree | e7b89fdb3376600a748c2b65e27df5d0e4da34ed /src/gallium/winsys/svga/drm/Makefile | |
parent | 11a56c430b84e97a10016045a2a0eeb126df88de (diff) |
winsys/svga: share the source list
Factor out C_SOURCES from Makefile to Makefile.sources, and let Makefile
and SConscript share it.
Diffstat (limited to 'src/gallium/winsys/svga/drm/Makefile')
-rw-r--r-- | src/gallium/winsys/svga/drm/Makefile | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/gallium/winsys/svga/drm/Makefile b/src/gallium/winsys/svga/drm/Makefile index c2f59e01b0d..a378900f408 100644 --- a/src/gallium/winsys/svga/drm/Makefile +++ b/src/gallium/winsys/svga/drm/Makefile @@ -3,16 +3,8 @@ include $(TOP)/configs/current LIBNAME = svgadrm -C_SOURCES = \ - vmw_buffer.c \ - vmw_context.c \ - vmw_fence.c \ - vmw_screen.c \ - vmw_screen_dri.c \ - vmw_screen_ioctl.c \ - vmw_screen_pools.c \ - vmw_screen_svga.c \ - vmw_surface.c +# get C_SOURCES +include Makefile.sources LIBRARY_INCLUDES = \ -I$(TOP)/src/gallium/drivers/svga \ |