aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2010-01-01 13:03:17 -0500
committerKevin O'Connor <kevin@koconnor.net>2010-01-01 13:03:17 -0500
commitc003148bb390f928acdc76ad77d787aa0e476013 (patch)
tree1795eafa3f5c7e138370b843e8214eb5983136cb /Makefile
parent5c99b6c984682ddb1d4543a7e27a1f4ca633e6a6 (diff)
downloadseabios-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--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b71d1a19..a4463bd6 100644
--- a/Makefile
+++ b/Makefile
@@ -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 ;)