diff options
author | Yang Zhong <yang.zhong@intel.com> | 2017-07-03 18:12:23 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-07-05 09:12:44 +0200 |
commit | e4b4b6428ca45cb1374dab98ab1d23a213a5db9a (patch) | |
tree | 0164f80312246a36b8ffd6bcc0d6f2011d432273 | |
parent | b11ec7f2e44b285a3967d629b55d1a6970b06787 (diff) | |
download | qemu-e4b4b6428ca45cb1374dab98ab1d23a213a5db9a.zip qemu-e4b4b6428ca45cb1374dab98ab1d23a213a5db9a.tar.gz qemu-e4b4b6428ca45cb1374dab98ab1d23a213a5db9a.tar.bz2 |
tcg: add the CONFIG_TCG into Makefiles
Add the CONFIG_TCG for frontend and backend's files in the related
Makefiles.
Signed-off-by: Yang Zhong <yang.zhong@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | Makefile.target | 4 | ||||
-rw-r--r-- | accel/Makefile.objs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.target b/Makefile.target index ffa7a8f..2baec92 100644 --- a/Makefile.target +++ b/Makefile.target @@ -90,8 +90,8 @@ all: $(PROGS) stap # cpu emulator library obj-y += exec.o obj-y += accel/ -obj-y += tcg/tcg.o tcg/tcg-op.o tcg/optimize.o -obj-y += tcg/tcg-common.o tcg/tcg-runtime.o +obj-$(CONFIG_TCG) += tcg/tcg.o tcg/tcg-op.o tcg/optimize.o +obj-$(CONFIG_TCG) += tcg/tcg-common.o tcg/tcg-runtime.o obj-$(CONFIG_TCG_INTERPRETER) += tcg/tci.o obj-$(CONFIG_TCG_INTERPRETER) += disas/tci.o obj-y += fpu/softfloat.o diff --git a/accel/Makefile.objs b/accel/Makefile.objs index cd5702f..10666ed 100644 --- a/accel/Makefile.objs +++ b/accel/Makefile.objs @@ -1,4 +1,4 @@ obj-$(CONFIG_SOFTMMU) += accel.o obj-y += kvm/ -obj-y += tcg/ +obj-$(CONFIG_TCG) += tcg/ obj-y += stubs/ |