diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-09-20 19:20:05 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-09-20 19:20:05 +0000 |
commit | c2b023b62707f5dc73497dc03f3764f145a29785 (patch) | |
tree | 209ced79c133e68654043bfc0f8986f5005447a2 /Makefile.target | |
parent | 96e132e24ee5a693069e83b6a981693588b088c1 (diff) |
Compile host-utils only once
See also facd2857783d58387885ad7cb1e4a8386f241738 and
34005a0060c176b3025a9e7c5d064615a9f80325.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.target b/Makefile.target index 8cc5b6d417..8cfa2a75d4 100644 --- a/Makefile.target +++ b/Makefile.target @@ -31,7 +31,7 @@ all: $(PROGS) ######################################################### # cpu emulator library -libobj-y = exec.o translate-all.o cpu-exec.o translate.o host-utils.o +libobj-y = exec.o translate-all.o cpu-exec.o translate.o libobj-y += tcg/tcg.o libobj-$(CONFIG_SOFTFLOAT) += fpu/softfloat.o libobj-$(CONFIG_NOSOFTFLOAT) += fpu/softfloat-native.o @@ -83,7 +83,7 @@ QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \ elfload.o linuxload.o uaccess.o gdbstub.o gdbstub-xml.o obj-y += envlist.o path.o -obj-y += tcg/tcg-runtime.o +obj-y += tcg/tcg-runtime.o host-utils.o obj-$(TARGET_HAS_BFLT) += flatload.o obj-$(TARGET_HAS_ELFLOAD32) += elfload32.o @@ -118,7 +118,7 @@ LIBS+=-lmx obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \ gdbstub.o gdbstub-xml.o obj-y += envlist.o path.o -obj-y += tcg/tcg-runtime.o +obj-y += tcg/tcg-runtime.o host-utils.o obj-i386-y += ioport-user.o @@ -137,7 +137,7 @@ QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH) obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \ gdbstub.o gdbstub-xml.o uaccess.o obj-y += envlist.o path.o -obj-y += tcg/tcg-runtime.o +obj-y += tcg/tcg-runtime.o host-utils.o obj-i386-y += ioport-user.o |