diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-02-11 08:44:20 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-02-11 08:44:20 +0000 |
commit | 184761864dcf515973bd514e8c35a5f06568f245 (patch) | |
tree | 12414ba195c592a98f33811dea3e8710c7bc2305 /src/mainboard/gigabyte | |
parent | b4d3af8888f261abb1f45ca42503f7170bdb3470 (diff) | |
download | coreboot-184761864dcf515973bd514e8c35a5f06568f245.tar.xz |
$(DISTRO_CFLAGS) is newconfig heritage and was never used on Kconfig. We do
what it was supposed to do in xcompile now..
Moved ap_romstage.o rule to src/arch/i386/Makefile.inc, too.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5115 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/gigabyte')
-rw-r--r-- | src/mainboard/gigabyte/ga_2761gxdk/Makefile.inc | 6 | ||||
-rw-r--r-- | src/mainboard/gigabyte/m57sli/Makefile.inc | 6 |
2 files changed, 0 insertions, 12 deletions
diff --git a/src/mainboard/gigabyte/ga_2761gxdk/Makefile.inc b/src/mainboard/gigabyte/ga_2761gxdk/Makefile.inc index 473b2f61d4..db5c8cb992 100644 --- a/src/mainboard/gigabyte/ga_2761gxdk/Makefile.inc +++ b/src/mainboard/gigabyte/ga_2761gxdk/Makefile.inc @@ -46,9 +46,3 @@ ifeq ($(CONFIG_AP_CODE_IN_CAR),y) ldscripts += $(src)/arch/i386/init/ldscript_apc.lb endif -ifdef POST_EVALUATION - -$(obj)/mainboard/$(MAINBOARDDIR)/ap_romstage.o: $(src)/mainboard/$(MAINBOARDDIR)/ap_romstage.c $(obj)/option_table.h - $(CC) $(DISTRO_CFLAGS) $(CFLAGS) $(CPPFLAGS) $(DEBUG_CFLAGS) -I$(src) -I. -c -S $(src)/mainboard/$(MAINBOARDDIR)/ap_romstage.c -o $@ - -endif diff --git a/src/mainboard/gigabyte/m57sli/Makefile.inc b/src/mainboard/gigabyte/m57sli/Makefile.inc index 6fa05c2643..87beb42e1e 100644 --- a/src/mainboard/gigabyte/m57sli/Makefile.inc +++ b/src/mainboard/gigabyte/m57sli/Makefile.inc @@ -51,9 +51,3 @@ ifeq ($(CONFIG_AP_CODE_IN_CAR),y) ldscripts += $(src)/arch/i386/init/ldscript_apc.lb endif -ifdef POST_EVALUATION - -$(obj)/mainboard/$(MAINBOARDDIR)/ap_romstage.o: $(src)/mainboard/$(MAINBOARDDIR)/ap_romstage.c $(obj)/option_table.h - $(CC) $(DISTRO_CFLAGS) $(CFLAGS) $(CPPFLAGS) $(DEBUG_CFLAGS) -I$(src) -I. -c -S $(src)/mainboard/$(MAINBOARDDIR)/ap_romstage.c -o $@ - -endif |