From eb09a75c492919e7c8d0b90b48e15a27e052cf69 Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Wed, 3 Dec 2008 02:14:30 +0000 Subject: [PATCH] Fix a missing dependency on arch/x86/stage0_common.S (that's an included file from all arch/x86/*/stage0.S). Signed-off-by: Carl-Daniel Hailfinger Acked-by: Carl-Daniel Hailfinger git-svn-id: svn://coreboot.org/repository/coreboot-v3@1062 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- arch/x86/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/Makefile b/arch/x86/Makefile index 0d81141505..2cdb2eff56 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile @@ -259,7 +259,7 @@ $(obj)/arch/x86/%.o: $(src)/arch/x86/%.c $(Q)$(CC) $(INITCFLAGS) -c $< -o $@ # Building asm stub. -$(obj)/arch/x86/%/stage0.o: $(src)/arch/x86/%/stage0.S +$(obj)/arch/x86/%/stage0.o: $(src)/arch/x86/%/stage0.S $(src)/arch/x86/stage0_common.S $(Q)mkdir -p $(dir $@) $(Q)printf " CC $(subst $(shell pwd)/,,$(@))\n" $(Q)$(CC) -E $(COREBOOTINCLUDE) $< \