diff options
author | Ákos Kovács | 2019-02-02 08:24:43 +0100 |
---|---|---|
committer | Paolo Bonzini | 2019-02-05 16:50:20 +0100 |
commit | f96c37821f7dc6c23b7d7b02ca7c753a42cfa976 (patch) | |
tree | 204b2123f9e870307430b62dbf427350bd67043f /hw/sparc/Makefile.objs | |
parent | hw/s390/Makefile.objs: Create new CONFIG_* variables for s390x boards and dev... (diff) | |
download | qemu-f96c37821f7dc6c23b7d7b02ca7c753a42cfa976.tar.gz qemu-f96c37821f7dc6c23b7d7b02ca7c753a42cfa976.tar.xz qemu-f96c37821f7dc6c23b7d7b02ca7c753a42cfa976.zip |
hw/sparc/Makefile.objs: CONFIG_* for sun4m and leon3 created
CONFIG_LEON3 added to default-configs/sparc-softmmu.mak.
Signed-off-by: Ákos Kovács <akoskovacs@gmx.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20190202072456.6468-15-yang.zhong@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/sparc/Makefile.objs')
-rw-r--r-- | hw/sparc/Makefile.objs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hw/sparc/Makefile.objs b/hw/sparc/Makefile.objs index e2d0828c39..d57e33f83e 100644 --- a/hw/sparc/Makefile.objs +++ b/hw/sparc/Makefile.objs @@ -1 +1,3 @@ -obj-y += sun4m_iommu.o sun4m.o leon3.o +obj-$(CONFIG_SUN4M) += sun4m_iommu.o +obj-$(CONFIG_SUN4M) += sun4m.o +obj-$(CONFIG_LEON3) += leon3.o |