diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2013-11-30 21:04:40 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-12-02 19:41:53 +0100 |
commit | 3d06488dbf86763d87980dbf66f384d430eff4fd (patch) | |
tree | e85a3f365f23d29b87d6468b38a8afb70f19f468 | |
parent | 39536e955a93d025f941dcb51bff640815212d15 (diff) | |
download | coreboot-3d06488dbf86763d87980dbf66f384d430eff4fd.tar.xz |
Makefile: Drop obsolete rules
The source files were removed with commit 3e4e3038.
Change-Id: I2df9d8cce0ec1462dcba4790a6c62abade0d223c
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/4298
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Tested-by: build bot (Jenkins)
-rw-r--r-- | src/arch/armv7/Makefile.inc | 2 | ||||
-rw-r--r-- | src/arch/x86/boot/Makefile.inc | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/src/arch/armv7/Makefile.inc b/src/arch/armv7/Makefile.inc index 4b1c591b77..dfd51640ab 100644 --- a/src/arch/armv7/Makefile.inc +++ b/src/arch/armv7/Makefile.inc @@ -192,8 +192,6 @@ romstage-y += memmove.S ramstage-y += memmove.S bootblock-y += memmove.S -$(obj)/arch/armv7/coreboot_table.ramstage.o : $(OPTION_TABLE_H) - romstage-srcs += $(objgenerated)/crt0.s ramstage-srcs += $(wildcard src/mainboard/$(MAINBOARDDIR)/mainboard.c) ifeq ($(CONFIG_GENERATE_PIRQ_TABLE),y) diff --git a/src/arch/x86/boot/Makefile.inc b/src/arch/x86/boot/Makefile.inc index 4b4a841b4e..3e53d79a64 100644 --- a/src/arch/x86/boot/Makefile.inc +++ b/src/arch/x86/boot/Makefile.inc @@ -14,6 +14,5 @@ ramstage-$(CONFIG_GENERATE_ACPI_TABLES) += acpigen.c ramstage-$(CONFIG_HAVE_ACPI_RESUME) += wakeup.S ramstage-$(CONFIG_RELOCATABLE_RAMSTAGE) += ramstage_module_header.c -$(obj)/arch/x86/boot/coreboot_table.ramstage.o : $(OPTION_TABLE_H) $(obj)/arch/x86/boot/smbios.ramstage.o: $(obj)/build.h |