diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-06-11 13:32:59 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-06-11 13:32:59 +0000 |
commit | e5fe0c5230cc7780de852cefb5df57e05e2c613e (patch) | |
tree | e9336966c143de451ee699c37714200ce9f96079 /Makefile.target | |
parent | ac62f715c6b8bde0fc4cfb0bed8e4f12ad4b5503 (diff) |
bFLT loader (for uClinux binaries).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1951 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target index 6d284d8ef0..b0efd856fd 100644 --- a/Makefile.target +++ b/Makefile.target @@ -171,7 +171,12 @@ LDFLAGS+=-p main.o: CFLAGS+=-p endif -OBJS= elfload.o main.o syscall.o mmap.o signal.o path.o osdep.o thunk.o +OBJS= main.o syscall.o mmap.o signal.o path.o osdep.o thunk.o \ + elfload.o linuxload.o +ifdef TARGET_HAS_BFLT +OBJS+= flatload.o +endif + ifeq ($(TARGET_ARCH), i386) OBJS+= vm86.o endif |