17ec681f3Smrg# Copyright © 2018 Rob Clark
27ec681f3Smrg# Copyright © 2019 Collabora
37ec681f3Smrg
47ec681f3Smrg# Permission is hereby granted, free of charge, to any person obtaining a copy
57ec681f3Smrg# of this software and associated documentation files (the "Software"), to deal
67ec681f3Smrg# in the Software without restriction, including without limitation the rights
77ec681f3Smrg# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
87ec681f3Smrg# copies of the Software, and to permit persons to whom the Software is
97ec681f3Smrg# furnished to do so, subject to the following conditions:
107ec681f3Smrg
117ec681f3Smrg# The above copyright notice and this permission notice shall be included in
127ec681f3Smrg# all copies or substantial portions of the Software.
137ec681f3Smrg
147ec681f3Smrg# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
157ec681f3Smrg# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
167ec681f3Smrg# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
177ec681f3Smrg# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
187ec681f3Smrg# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
197ec681f3Smrg# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
207ec681f3Smrg# SOFTWARE.
217ec681f3Smrg
227ec681f3Smrglibasahi_agx_files = files(
237ec681f3Smrg  'agx_compile.c',
247ec681f3Smrg  'agx_dce.c',
257ec681f3Smrg  'agx_liveness.c',
267ec681f3Smrg  'agx_pack.c',
277ec681f3Smrg  'agx_print.c',
287ec681f3Smrg  'agx_optimizer.c',
297ec681f3Smrg  'agx_register_allocate.c',
307ec681f3Smrg  'agx_uniforms.c',
317ec681f3Smrg)
327ec681f3Smrg
337ec681f3Smrgagx_opcodes_h = custom_target(
347ec681f3Smrg  'agx_opcodes.h',
357ec681f3Smrg  input : ['agx_opcodes.h.py'],
367ec681f3Smrg  output : 'agx_opcodes.h',
377ec681f3Smrg  command : [prog_python, '@INPUT@'],
387ec681f3Smrg  capture : true,
397ec681f3Smrg  depend_files : files('agx_opcodes.py'),
407ec681f3Smrg)
417ec681f3Smrg
427ec681f3Smrgidep_agx_opcodes_h = declare_dependency(
437ec681f3Smrg  sources : [agx_opcodes_h],
447ec681f3Smrg  include_directories : include_directories('.'),
457ec681f3Smrg)
467ec681f3Smrg
477ec681f3Smrgagx_opcodes_c = custom_target(
487ec681f3Smrg  'agx_opcodes.c',
497ec681f3Smrg  input : ['agx_opcodes.c.py'],
507ec681f3Smrg  output : 'agx_opcodes.c',
517ec681f3Smrg  command : [prog_python, '@INPUT@'],
527ec681f3Smrg  capture : true,
537ec681f3Smrg  depend_files : files('agx_opcodes.py'),
547ec681f3Smrg)
557ec681f3Smrg
567ec681f3Smrgagx_builder_h = custom_target(
577ec681f3Smrg  'agx_builder.h',
587ec681f3Smrg  input : ['agx_builder.h.py'],
597ec681f3Smrg  output : 'agx_builder.h',
607ec681f3Smrg  command : [prog_python, '@INPUT@'],
617ec681f3Smrg  capture : true,
627ec681f3Smrg  depend_files : files('agx_opcodes.py'),
637ec681f3Smrg)
647ec681f3Smrg
657ec681f3Smrgidep_agx_builder_h = declare_dependency(
667ec681f3Smrg  sources : [agx_builder_h],
677ec681f3Smrg  include_directories : include_directories('.'),
687ec681f3Smrg)
697ec681f3Smrg
707ec681f3Smrglibasahi_compiler = static_library(
717ec681f3Smrg  'asahi_compiler',
727ec681f3Smrg  [libasahi_agx_files, agx_opcodes_c],
737ec681f3Smrg  include_directories : [inc_include, inc_src, inc_mesa, inc_gallium, inc_gallium_aux, inc_mapi],
747ec681f3Smrg  dependencies: [idep_nir, idep_agx_opcodes_h, idep_agx_builder_h, idep_agx_pack],
757ec681f3Smrg  c_args : [no_override_init_args],
767ec681f3Smrg  gnu_symbol_visibility : 'hidden',
777ec681f3Smrg  build_by_default : false,
787ec681f3Smrg)
79