diff options
author | Matt Turner <[email protected]> | 2014-12-06 21:56:41 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-12-12 12:11:48 -0800 |
commit | 10259d86149cf50a6ede0eb6730f4ecb662f2628 (patch) | |
tree | 1ca290a88743e080cfcf7114a8682edb1be0faf7 /src/mesa/drivers/dri/nouveau | |
parent | 6b0207552fa62890b9f4d4d19d489b53a373015f (diff) |
nouveau: Add headers to distribution.
Diffstat (limited to 'src/mesa/drivers/dri/nouveau')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/Makefile.am | 5 | ||||
-rw-r--r-- | src/mesa/drivers/dri/nouveau/Makefile.sources | 26 |
2 files changed, 30 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/nouveau/Makefile.am b/src/mesa/drivers/dri/nouveau/Makefile.am index 377b9a24e05..f302864de90 100644 --- a/src/mesa/drivers/dri/nouveau/Makefile.am +++ b/src/mesa/drivers/dri/nouveau/Makefile.am @@ -23,6 +23,11 @@ include Makefile.sources +EXTRA_DIST = \ + nouveau_render_t.c \ + nouveau_swtnl_t.c \ + nouveau_vbo_t.c + AM_CFLAGS = \ -I$(top_srcdir)/include \ -I$(top_srcdir)/src/ \ diff --git a/src/mesa/drivers/dri/nouveau/Makefile.sources b/src/mesa/drivers/dri/nouveau/Makefile.sources index b2a710a66c2..3eff3b8c2b5 100644 --- a/src/mesa/drivers/dri/nouveau/Makefile.sources +++ b/src/mesa/drivers/dri/nouveau/Makefile.sources @@ -1,23 +1,43 @@ NOUVEAU_DRIVER_FILES = \ nouveau_array.c \ + nouveau_array.h \ nouveau_bufferobj.c \ + nouveau_bufferobj.h \ nouveau_context.c \ + nouveau_context.h \ nouveau_driver.c \ + nouveau_driver.h \ nouveau_fbo.c \ + nouveau_fbo.h \ + nouveau_gldefs.h \ + nouveau_local.h \ + nouveau_render.h \ nouveau_scratch.c \ + nouveau_scratch.h \ nouveau_screen.c \ + nouveau_screen.h \ nouveau_span.c \ nouveau_state.c \ + nouveau_state.h \ nouveau_surface.c \ + nouveau_surface.h \ nouveau_texture.c \ + nouveau_texture.h \ + nouveau_util.h \ + nv01_2d.xml.h \ + nv04_3d.xml.h \ nv04_context.c \ + nv04_context.h \ + nv04_driver.h \ nv04_render.c \ nv04_state_fb.c \ nv04_state_frag.c \ nv04_state_raster.c \ nv04_state_tex.c \ nv04_surface.c \ + nv10_3d.xml.h \ nv10_context.c \ + nv10_driver.h \ nv10_render.c \ nv10_state_fb.c \ nv10_state_frag.c \ @@ -25,14 +45,18 @@ NOUVEAU_DRIVER_FILES = \ nv10_state_raster.c \ nv10_state_tex.c \ nv10_state_tnl.c \ + nv20_3d.xml.h \ nv20_context.c \ + nv20_driver.h \ nv20_render.c \ nv20_state_fb.c \ nv20_state_frag.c \ nv20_state_polygon.c \ nv20_state_raster.c \ nv20_state_tex.c \ - nv20_state_tnl.c + nv20_state_tnl.c \ + nv_m2mf.xml.h \ + nv_object.xml.h NOUVEAU_C_FILES = \ $(NOUVEAU_DRIVER_FILES) |