diff options
author | Paolo Bonzini | 2017-07-14 11:51:41 +0200 |
---|---|---|
committer | Paolo Bonzini | 2017-10-16 18:03:52 +0200 |
commit | 7271a81949ee9806705d51618379246fb2b72209 (patch) | |
tree | 718dcedcb34a288d645a6bada0bad6326a19aaa9 /libdecnumber | |
parent | disas: Always initialize read_memory_inner_func properly (diff) | |
download | qemu-7271a81949ee9806705d51618379246fb2b72209.tar.gz qemu-7271a81949ee9806705d51618379246fb2b72209.tar.xz qemu-7271a81949ee9806705d51618379246fb2b72209.zip |
build: remove CONFIG_LIBDECNUMBER
It is used by all PPC targets; we can give the directory its own
Makefile.objs file, and include it directly from target/ppc.
target/s390 can do the same when it starts using it.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'libdecnumber')
-rw-r--r-- | libdecnumber/Makefile.objs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libdecnumber/Makefile.objs b/libdecnumber/Makefile.objs new file mode 100644 index 0000000000..d81db0443a --- /dev/null +++ b/libdecnumber/Makefile.objs @@ -0,0 +1,5 @@ +obj-y += decContext.o +obj-y += decNumber.o +obj-y += dpd/decimal32.o +obj-y += dpd/decimal64.o +obj-y += dpd/decimal128.o |