]> git.proxmox.com Git - mirror_qemu.git/blob - target/sparc/meson.build
qapi: Reformat doc comments to conform to current conventions
[mirror_qemu.git] / target / sparc / meson.build
1 sparc_ss = ss.source_set()
2 sparc_ss.add(files(
3 'cc_helper.c',
4 'cpu.c',
5 'fop_helper.c',
6 'gdbstub.c',
7 'helper.c',
8 'ldst_helper.c',
9 'translate.c',
10 'win_helper.c',
11 ))
12 sparc_ss.add(when: 'TARGET_SPARC', if_true: files('int32_helper.c'))
13 sparc_ss.add(when: 'TARGET_SPARC64', if_true: files('int64_helper.c', 'vis_helper.c'))
14
15 sparc_softmmu_ss = ss.source_set()
16 sparc_softmmu_ss.add(files(
17 'machine.c',
18 'mmu_helper.c',
19 'monitor.c',
20 ))
21
22 target_arch += {'sparc': sparc_ss}
23 target_softmmu_arch += {'sparc': sparc_softmmu_ss}