aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/Makefile.romccboard.inc
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-01-30 10:50:57 +0000
committerStefan Reinauer <stepan@openbios.org>2010-01-30 10:50:57 +0000
commitc2ef1463b69482dab43f53bf5e9307e5f04dd11f (patch)
treeb87a173b05060e587bdde7b984c49e0a141f81d9 /src/mainboard/Makefile.romccboard.inc
parent68003b8d14526e76709068569a1f207eeb69941a (diff)
ifeq wants a space before the (
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5067 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/Makefile.romccboard.inc')
-rw-r--r--src/mainboard/Makefile.romccboard.inc18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mainboard/Makefile.romccboard.inc b/src/mainboard/Makefile.romccboard.inc
index c103d82f13..1671b7ad94 100644
--- a/src/mainboard/Makefile.romccboard.inc
+++ b/src/mainboard/Makefile.romccboard.inc
@@ -22,11 +22,11 @@
initobj-y += crt0.o
crt0s :=
-ifeq($(CONFIG_BIG_BOOTBLOCK),y)
+ifeq ($(CONFIG_BIG_BOOTBLOCK),y)
crt0s += $(src)/cpu/x86/16bit/entry16.inc
endif
crt0s += $(src)/cpu/x86/32bit/entry32.inc
-ifeq($(CONFIG_BIG_BOOTBLOCK),y)
+ifeq ($(CONFIG_BIG_BOOTBLOCK),y)
crt0s += $(src)/cpu/x86/16bit/reset16.inc
crt0s += $(src)/arch/i386/lib/cpu_reset.inc
crt0s += $(src)/arch/i386/lib/id.inc
@@ -34,30 +34,30 @@ endif
crt0s += $(src)/cpu/x86/32bit/entry32.inc
crt0s += $(src)/cpu/x86/fpu_enable.inc
-ifeq($(CONFIG_CPU_AMD_GX1),y)
+ifeq ($(CONFIG_CPU_AMD_GX1),y)
crt0s += $(src)/cpu/amd/model_gx1/cpu_setup.inc
crt0s += $(src)/cpu/amd/model_gx1/gx_setup.inc
endif
-ifeq($(CONFIG_SSE),y)
+ifeq ($(CONFIG_SSE),y)
crt0s += $(src)/cpu/x86/sse_enable.inc
endif
-ifeq($(CONFIG_BIG_BOOTBLOCK),y)
+ifeq ($(CONFIG_BIG_BOOTBLOCK),y)
crt0s += $(obj)/mainboard/$(MAINBOARDDIR)/failover.inc
endif
crt0s += $(obj)/mainboard/$(MAINBOARDDIR)/auto.inc
-ifeq($(CONFIG_SSE),y)
+ifeq ($(CONFIG_SSE),y)
crt0s += $(src)/cpu/x86/sse_disable.inc
endif
-ifeq($(CONFIG_MMX),y)
+ifeq ($(CONFIG_MMX),y)
crt0s += $(src)/cpu/x86/mmx_disable.inc
endif
ldscripts := $(src)/arch/i386/init/ldscript_fallback_cbfs.lb
-ifeq($(CONFIG_BIG_BOOTBLOCK),y)
+ifeq ($(CONFIG_BIG_BOOTBLOCK),y)
ldscripts += $(src)/cpu/x86/16bit/entry16.lds
endif
ldscripts += $(src)/cpu/x86/32bit/entry32.lds
-ifeq($(CONFIG_BIG_BOOTBLOCK),y)
+ifeq ($(CONFIG_BIG_BOOTBLOCK),y)
ldscripts += $(src)/cpu/x86/16bit/reset16.lds
ldscripts += $(src)/arch/i386/lib/id.lds
ldscripts += $(src)/arch/i386/lib/failover.lds