mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
meson: convert hw/isa
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
721cdcae73
commit
a74fb3984a
4 changed files with 12 additions and 12 deletions
|
@ -16,7 +16,6 @@ devices-dirs-y += input/
|
|||
devices-dirs-y += intc/
|
||||
devices-dirs-$(CONFIG_IPACK) += ipack/
|
||||
devices-dirs-$(CONFIG_IPMI) += ipmi/
|
||||
devices-dirs-y += isa/
|
||||
endif
|
||||
|
||||
common-obj-y += $(devices-dirs-y)
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
common-obj-$(CONFIG_ISA_BUS) += isa-bus.o
|
||||
common-obj-$(CONFIG_ISA_SUPERIO) += isa-superio.o
|
||||
common-obj-$(CONFIG_APM) += apm.o
|
||||
common-obj-$(CONFIG_I82378) += i82378.o
|
||||
common-obj-$(CONFIG_PC87312) += pc87312.o
|
||||
common-obj-$(CONFIG_PIIX3) += piix3.o
|
||||
common-obj-$(CONFIG_PIIX4) += piix4.o
|
||||
common-obj-$(CONFIG_VT82C686) += vt82c686.o
|
||||
common-obj-$(CONFIG_SMC37C669) += smc37c669-superio.o
|
||||
|
||||
obj-$(CONFIG_LPC_ICH9) += lpc_ich9.o
|
11
hw/isa/meson.build
Normal file
11
hw/isa/meson.build
Normal file
|
@ -0,0 +1,11 @@
|
|||
softmmu_ss.add(when: 'CONFIG_APM', if_true: files('apm.c'))
|
||||
softmmu_ss.add(when: 'CONFIG_I82378', if_true: files('i82378.c'))
|
||||
softmmu_ss.add(when: 'CONFIG_ISA_BUS', if_true: files('isa-bus.c'))
|
||||
softmmu_ss.add(when: 'CONFIG_ISA_SUPERIO', if_true: files('isa-superio.c'))
|
||||
softmmu_ss.add(when: 'CONFIG_PC87312', if_true: files('pc87312.c'))
|
||||
softmmu_ss.add(when: 'CONFIG_PIIX3', if_true: files('piix3.c'))
|
||||
softmmu_ss.add(when: 'CONFIG_PIIX4', if_true: files('piix4.c'))
|
||||
softmmu_ss.add(when: 'CONFIG_SMC37C669', if_true: files('smc37c669-superio.c'))
|
||||
softmmu_ss.add(when: 'CONFIG_VT82C686', if_true: files('vt82c686.c'))
|
||||
|
||||
specific_ss.add(when: 'CONFIG_LPC_ICH9', if_true: files('lpc_ich9.c'))
|
|
@ -1,4 +1,5 @@
|
|||
subdir('core')
|
||||
subdir('isa')
|
||||
subdir('mem')
|
||||
subdir('misc')
|
||||
subdir('net')
|
||||
|
|
Loading…
Reference in a new issue