diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-19 21:04:38 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-19 21:04:38 +0000 |
commit | 642a4f967f69a86bd59ad7c7d0adf8e80d0b4b54 (patch) | |
tree | a3cb70b27e8ca4493b7e9aeb240706c7f092b7e5 /pc-bios/Makefile | |
parent | 57fa1fb31c23f1bf78664159d5813206bf2e4d0e (diff) | |
download | qemu-642a4f967f69a86bd59ad7c7d0adf8e80d0b4b54.zip qemu-642a4f967f69a86bd59ad7c7d0adf8e80d0b4b54.tar.gz qemu-642a4f967f69a86bd59ad7c7d0adf8e80d0b4b54.tar.bz2 |
Linux loader rewrite, by H. Peter Anvin.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2835 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'pc-bios/Makefile')
-rw-r--r-- | pc-bios/Makefile | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/pc-bios/Makefile b/pc-bios/Makefile index 7ae0ff0..c817e85 100644 --- a/pc-bios/Makefile +++ b/pc-bios/Makefile @@ -6,16 +6,9 @@ include ../config-host.mak DEFINES= TARGETS= -ifeq ($(ARCH),i386) -TARGETS+=linux_boot.bin -endif all: $(TARGETS) -linux_boot.bin: linux_boot.o - ld --oformat binary -Ttext 0 -o $@ $< - chmod a-x $@ - %.o: %.S $(CC) $(DEFINES) -c -o $@ $< |