1# Copyright © 2017 Intel Corporation
2
3# Permission is hereby granted, free of charge, to any person obtaining a copy
4# of this software and associated documentation files (the "Software"), to deal
5# in the Software without restriction, including without limitation the rights
6# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7# copies of the Software, and to permit persons to whom the Software is
8# furnished to do so, subject to the following conditions:
9
10# The above copyright notice and this permission notice shall be included in
11# all copies or substantial portions of the Software.
12
13# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19# SOFTWARE.
20
21sid_tables_h = custom_target(
22  'sid_tables_h',
23  input : ['sid_tables.py', 'sid.h', 'gfx9d.h'],
24  output : 'sid_tables.h',
25  command : [prog_python, '@INPUT@'],
26  capture : true,
27)
28
29amd_common_files = files(
30  'ac_binary.c',
31  'ac_binary.h',
32  'ac_exp_param.h',
33  'ac_llvm_build.c',
34  'ac_llvm_build.h',
35  'ac_llvm_helper.cpp',
36  'ac_llvm_util.c',
37  'ac_llvm_util.h',
38  'ac_shader_abi.h',
39  'ac_shader_util.c',
40  'ac_shader_util.h',
41  'ac_nir_to_llvm.c',
42  'ac_nir_to_llvm.h',
43  'ac_gpu_info.c',
44  'ac_gpu_info.h',
45  'ac_surface.c',
46  'ac_surface.h',
47  'ac_debug.c',
48  'ac_debug.h',
49)
50
51libamd_common = static_library(
52  'amd_common',
53  [amd_common_files, sid_tables_h],
54  include_directories : [
55    inc_common, inc_compiler, inc_mesa, inc_mapi, inc_amd,
56  ],
57  dependencies : [
58    dep_llvm, dep_thread, dep_elf, dep_libdrm_amdgpu, dep_valgrind,
59    idep_nir_headers,
60  ],
61  c_args : [c_vis_args],
62  cpp_args : [cpp_vis_args],
63)
64