diff options
author | Anuj Phogat <[email protected]> | 2017-05-11 14:18:52 -0700 |
---|---|---|
committer | Anuj Phogat <[email protected]> | 2017-06-09 16:02:58 -0700 |
commit | e01c5a6824cdc8578acc6cebd2ac1baabccb5807 (patch) | |
tree | 93411ae8f8386904003358fc95052241c86488cd /src/mesa/drivers | |
parent | 2417d5ca19e473de33fbc05173b86dc64b94c5f9 (diff) |
i965/cnl: Wire up Mesa build files for gen10
V2: Remove isl_gen10.c and isl_gen10.h
Signed-off-by: Anuj Phogat <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.am | 6 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.sources | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.am b/src/mesa/drivers/dri/i965/Makefile.am index 762aefc5542..c29cc594c8e 100644 --- a/src/mesa/drivers/dri/i965/Makefile.am +++ b/src/mesa/drivers/dri/i965/Makefile.am @@ -53,7 +53,8 @@ I965_PERGEN_LIBS = \ libi965_gen7.la \ libi965_gen75.la \ libi965_gen8.la \ - libi965_gen9.la + libi965_gen9.la \ + libi965_gen10.la libi965_gen4_la_SOURCES = $(i965_gen4_FILES) libi965_gen4_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=40 @@ -79,6 +80,9 @@ libi965_gen8_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=80 libi965_gen9_la_SOURCES = $(i965_gen9_FILES) libi965_gen9_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=90 +libi965_gen10_la_SOURCES = $(i965_gen10_FILES) +libi965_gen10_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=100 + noinst_LTLIBRARIES = \ libi965_dri.la \ $(I965_PERGEN_LIBS) diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources index f199235be6b..1e656eb65a4 100644 --- a/src/mesa/drivers/dri/i965/Makefile.sources +++ b/src/mesa/drivers/dri/i965/Makefile.sources @@ -155,6 +155,10 @@ i965_gen9_FILES = \ genX_blorp_exec.c \ genX_state_upload.c +i965_gen10_FILES = \ + genX_blorp_exec.c \ + genX_state_upload.c + i965_oa_GENERATED_FILES = \ brw_oa_hsw.h \ brw_oa_hsw.c |