diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2008-06-14 15:56:16 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2008-06-14 15:56:16 -0400 |
commit | f54c150090ff38a73ef64a5d20fdfa0d9c403972 (patch) | |
tree | c9c4325ee9d88897c25452eaf08fcc22440499b4 /Makefile | |
parent | 15c1f2207f4d406bb56032cef5920f474f32de88 (diff) | |
download | seabios-f54c150090ff38a73ef64a5d20fdfa0d9c403972.tar.gz |
Cleanup handling of interrupt controller (PIC).
Add new file (pic.h) with helpers for accessing the PIC.
Move irq enabling code to the files that use those interrupts.
Also, don't setup for floppy if floppy support not enabled.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -8,8 +8,9 @@ OUT=out/ # Source files -SRCBOTH=output.c util.c floppy.c ata.c kbd.c pci.c boot.c serial.c clock.c -SRC16=$(SRCBOTH) disk.c system.c mouse.c cdrom.c apm.c pcibios.c +SRCBOTH=output.c util.c floppy.c ata.c system.c mouse.c kbd.c pci.c boot.c \ + serial.c clock.c +SRC16=$(SRCBOTH) disk.c cdrom.c apm.c pcibios.c SRC32=$(SRCBOTH) post.c shadow.c rombios32.c post_menu.c memmap.c coreboot.c \ acpi.c pirtable.c TABLESRC=font.c cbt.c floppy_dbt.c |