diff options
author | Emil Velikov <[email protected]> | 2014-08-29 23:15:01 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-09-05 23:46:26 +0100 |
commit | 8b48e14a48d62d7bc304d909007bc07598b471a3 (patch) | |
tree | 3487d9ffcae18ed8df3c52ae9f7d9104356658b3 | |
parent | 27d4f2eae3cd460823e4cc70e561dbfb39e0fe4f (diff) |
gallium/radeon: ship all files in the tarball
- include all headers in Makefile.sources
- sort the list(s)
- bundle the android buildscript & LLVM note
Signed-off-by: Emil Velikov <[email protected]>
Acked-by: Matt Turner <[email protected]>
-rw-r--r-- | src/gallium/drivers/radeon/Makefile.am | 3 | ||||
-rw-r--r-- | src/gallium/drivers/radeon/Makefile.sources | 24 |
2 files changed, 20 insertions, 7 deletions
diff --git a/src/gallium/drivers/radeon/Makefile.am b/src/gallium/drivers/radeon/Makefile.am index e2c980f614e..3855eb06d9e 100644 --- a/src/gallium/drivers/radeon/Makefile.am +++ b/src/gallium/drivers/radeon/Makefile.am @@ -28,3 +28,6 @@ libradeon_la_LDFLAGS = \ $(LLVM_LDFLAGS) endif + +EXTRA_DIST = Android.mk \ + LLVM_REVISION.txt diff --git a/src/gallium/drivers/radeon/Makefile.sources b/src/gallium/drivers/radeon/Makefile.sources index fbb13926c8e..f2b70a1b4b4 100644 --- a/src/gallium/drivers/radeon/Makefile.sources +++ b/src/gallium/drivers/radeon/Makefile.sources @@ -1,17 +1,27 @@ C_SOURCES := \ - cayman_msaa.c \ + cayman_msaa.c \ r600_buffer_common.c \ + r600_cs.h \ + r600d_common.h \ r600_pipe_common.c \ - r600_query.c \ + r600_pipe_common.h \ + r600_query.c \ r600_streamout.c \ - r600_texture.c \ - radeon_video.c \ + r600_texture.c \ radeon_uvd.c \ + radeon_uvd.h \ + radeon_vce_40_2_2.c \ radeon_vce.c \ - radeon_vce_40_2_2.c + radeon_vce.h \ + radeon_video.c \ + radeon_video.h LLVM_C_FILES := \ radeon_elf_util.c \ - radeon_setup_tgsi_llvm.c \ + radeon_elf_util.h \ radeon_llvm_emit.c \ - radeon_llvm_util.c + radeon_llvm_emit.h \ + radeon_llvm.h \ + radeon_llvm_util.c \ + radeon_llvm_util.h \ + radeon_setup_tgsi_llvm.c |