blob: 04734e71dd5fc10a357c1d79faedd897bf543a82 [file] [log] [blame]
Miguel Osorio03f2e232019-09-17 19:44:37 -07001# Copyright lowRISC contributors.
2# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3# SPDX-License-Identifier: Apache-2.0
4
Miguel Osorioae67f6b2019-10-18 18:56:08 -07005subdir('lib')
Miguel Young de la Sota1d0f8eb2019-11-20 14:39:40 -06006subdir('exts')
7
8# Arguments for custom_target, for converting a linked .elf file into .bin and .vmem
9# files (plus a disassembled .dis file).
10#
11# These definitions should only be available to directories which define executables.
Greg Chadwick12871042020-04-20 13:42:56 +010012make_embedded_target_outputs = ['@BASENAME@.bin', '@BASENAME@.dis', '@BASENAME@.32.vmem', '@BASENAME@.64.vmem']
Miguel Young de la Sota1d0f8eb2019-11-20 14:39:40 -060013make_embedded_target = [
Miguel Young de la Sota3c8ab3b2019-11-21 13:59:09 -060014 prog_python, meson.source_root() / 'util/embedded_target.py',
Miguel Young de la Sota1d0f8eb2019-11-20 14:39:40 -060015 '--objcopy', prog_objcopy,
16 '--srec_cat', prog_srec_cat,
17 '--objdump', prog_objdump,
18 '--input', '@INPUT@',
19 '--basename', '@BASENAME@',
20 '--outdir', '@OUTDIR@',
21]
Miguel Osorioae67f6b2019-10-18 18:56:08 -070022
Miguel Young de la Sota3c8ab3b2019-11-21 13:59:09 -060023# Arguments for custom_target, for copying a completed |make_embedded_target| into
24# the appropriate location under $BIN_DIR.
25export_embedded_target = [
26 meson.source_root() / 'util/export_target.sh',
27 dev_bin_dir,
28 'sw/device',
29 '@OUTDIR@',
30 '@INPUT@',
31]
32
Miguel Osorioae67f6b2019-10-18 18:56:08 -070033subdir('boot_rom')
Sam Elliott240a2082020-07-27 21:34:34 +010034subdir('mask_rom')
Miguel Osorioae67f6b2019-10-18 18:56:08 -070035subdir('examples')
Miguel Osorio92e92422020-08-12 19:57:57 -070036subdir('sca')
Miguel Osorioae67f6b2019-10-18 18:56:08 -070037subdir('tests')
Greg Chadwick11a49102019-11-27 14:18:16 +000038subdir('benchmarks')
Jon Flatley61a033f2020-02-05 14:28:51 -050039subdir('tock')
Greg Chadwick29d26c52020-04-17 14:44:42 +010040subdir('riscv_compliance_support')