diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-09-15 01:17:06 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-09-18 20:48:34 -0400 |
commit | cdb98203f41671327936152d40d9041a82b0b9ce (patch) | |
tree | a62a49809e3073d635272d5cd6268064bd937721 /Makefile | |
parent | fa9c66a6560a5009302aff22602ffa3e955726d9 (diff) | |
download | seabios-cdb98203f41671327936152d40d9041a82b0b9ce.tar.gz |
build: Perform compile checking on vgasrc code.
Perform a compile check on each individual C file of the vgabios code
similar to the way that the main bios code does individual C compile
tests.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -187,7 +187,7 @@ SRCVGA=src/output.c src/string.c src/hw/pci.c \ CFLAGS16VGA = $(CFLAGS16INC) -Isrc -$(OUT)vgaccode16.raw.s: $(OUT)autoconf.h ; $(call whole-compile, $(CFLAGS16VGA) -S, $(SRCVGA),$@) +$(OUT)vgaccode16.raw.s: $(OUT)autoconf.h $(patsubst %.c, $(OUT)%.o,$(SRCVGA)) ; $(call whole-compile, $(CFLAGS16VGA) -S, $(SRCVGA),$@) $(OUT)vgaccode16.o: $(OUT)vgaccode16.raw.s scripts/vgafixup.py @echo " Fixup VGA rom assembler" |