mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00

No need to include them in libqemustub.a, since only system emulators need them. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
10 lines
295 B
Text
10 lines
295 B
Text
ifeq ($(CONFIG_SMBIOS),y)
|
|
common-obj-y += smbios.o
|
|
common-obj-$(CONFIG_IPMI) += smbios_type_38.o
|
|
common-obj-$(call lnot,$(CONFIG_IPMI)) += smbios_type_38-stub.o
|
|
else
|
|
common-obj-y += smbios-stub.o
|
|
endif
|
|
|
|
common-obj-$(CONFIG_ALL) += smbios-stub.o
|
|
common-obj-$(CONFIG_ALL) += smbios_type_38-stub.o
|