diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2008-03-12 21:27:02 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2008-03-12 21:27:02 -0400 |
commit | 2018eff2cf3f4caced677a7c3bc0b0b9af5bc8d7 (patch) | |
tree | 0012b3935acfbd65ceaa8d81c0526b605fe3e385 /Makefile | |
parent | e51313d90cccda0e8ee41d72bf9bc750253e94c4 (diff) | |
download | seabios-2018eff2cf3f4caced677a7c3bc0b0b9af5bc8d7.tar.gz |
Move keyboard setup to kbd.c.
Now kbd.c is compiled by both 16bit and 32bit code.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ OUT=out/ # Source files SRC16=floppy.c disk.c system.c clock.c serial.c kbd.c mouse.c output.c \ boot.c ata.c cdrom.c apm.c util.c -SRC32=post.c output.c rombios32.c util.c ata.c +SRC32=post.c output.c rombios32.c util.c ata.c kbd.c TABLESRC=font.c cbt.c floppy_dbt.c cc-option = $(shell if test -z "`$(1) $(2) -S -o /dev/null -xc \ |