From 3b79f8b97f2abff364b9ca9f1e761ed4827a6deb Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sat, 27 Feb 2010 13:43:47 -0500 Subject: [PATCH] Only compile usb-hub.c and paravirt.c with 32bit code. Those files are only used by 32bit code, so don't bother including them with the 16bit code. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b896b54..82651d8 100644 --- a/Makefile +++ b/Makefile @@ -14,11 +14,11 @@ OUT=out/ SRCBOTH=misc.c pmm.c stacks.c output.c util.c block.c floppy.c ata.c mouse.c \ kbd.c pci.c serial.c clock.c pic.c cdrom.c ps2port.c smp.c resume.c \ pnpbios.c pirtable.c vgahooks.c ramdisk.c pcibios.c blockcmd.c \ - usb.c usb-uhci.c usb-ohci.c usb-hid.c usb-hub.c usb-msc.c paravirt.c + usb.c usb-uhci.c usb-ohci.c usb-hid.c usb-msc.c SRC16=$(SRCBOTH) system.c disk.c apm.c font.c SRC32FLAT=$(SRCBOTH) post.c shadow.c memmap.c coreboot.c boot.c \ acpi.c smm.c mptable.c smbios.c pciinit.c optionroms.c mtrr.c \ - lzmadecode.c + lzmadecode.c usb-hub.c paravirt.c SRC32SEG=util.c output.c pci.c pcibios.c apm.c cc-option = $(shell if test -z "`$(1) $(2) -S -o /dev/null -xc \ -- 2.25.1