diff options
author | Emil Velikov <[email protected]> | 2013-09-22 17:22:15 +0100 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2013-10-01 07:29:51 -0700 |
commit | 4e9028b63818e7075fd3dc304e8ae3e8107b155f (patch) | |
tree | aaa044daaf29a5aecb1b4f95c94b3ab53e6bba4c /src/gallium/state_trackers/egl/Makefile.sources | |
parent | edd11ece383416bf9a1c6ced36214f7fd240a274 (diff) |
st/egl: consolidate C sources lists into Makefile.sources
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Tom Stellard <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/egl/Makefile.sources')
-rw-r--r-- | src/gallium/state_trackers/egl/Makefile.sources | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/egl/Makefile.sources b/src/gallium/state_trackers/egl/Makefile.sources new file mode 100644 index 00000000000..aaf6b8b6405 --- /dev/null +++ b/src/gallium/state_trackers/egl/Makefile.sources @@ -0,0 +1,39 @@ +common_SOURCES := \ + common/egl_g3d_api.c \ + common/egl_g3d.c \ + common/egl_g3d_image.c \ + common/egl_g3d_st.c \ + common/egl_g3d_sync.c \ + common/native_helper.c \ + common/native_wayland_drm_bufmgr.c + +android_SOURCES := \ + android/native_android.cpp + +drm_SOURCES := \ + drm/modeset.c \ + drm/native_drm.c + +fbdev_SOURCES := \ + fbdev/native_fbdev.c + +gdi_SOURCES := \ + gdi/native_gdi.c + +null_SOURCES := \ + null/native_null.c + +x11_SOURCES := \ + x11/glxinit.c \ + x11/native_dri2.c \ + x11/native_x11.c \ + x11/native_ximage.c + +x11_drm_SOURCES := \ + x11/x11_screen.c \ + x11/dri2.c + +wayland_SOURCES := \ + wayland/native_drm.c \ + wayland/native_shm.c \ + wayland/native_wayland.c |