From cdb98203f41671327936152d40d9041a82b0b9ce Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sun, 15 Sep 2013 01:17:06 -0400 Subject: 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c824f0b6..28c027a3 100644 --- a/Makefile +++ b/Makefile @@ -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" -- cgit