diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2010-01-01 13:03:17 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2010-01-01 13:03:17 -0500 |
commit | c003148bb390f928acdc76ad77d787aa0e476013 (patch) | |
tree | 1795eafa3f5c7e138370b843e8214eb5983136cb /Makefile | |
parent | 5c99b6c984682ddb1d4543a7e27a1f4ca633e6a6 (diff) | |
download | seabios-c003148bb390f928acdc76ad77d787aa0e476013.tar.gz |
Implement native 32bit APM support.
Add APM code to 32bit segmented code.
Use 32bit APM code instead of jumping into 16bit mode.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ 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 -SRC32SEG=util.c output.c pci.c pcibios.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 \ /dev/null 2>&1`"; then echo "$(2)"; else echo "$(3)"; fi ;) |