hook up arch/ to the make process

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>


git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@53 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Stefan Reinauer 2006-12-04 10:06:20 +00:00
parent b01a43ee71
commit fab2c44c60
5 changed files with 26 additions and 3 deletions

View file

@ -440,6 +440,7 @@ export LBBUILD_IMAGE ?= linuxbios.rom startup_code.rom
core-y := mainboard/
core-y += arch/
ifeq ($(LBBUILD_COMPRESSORS),)
core-y += compressors

9
arch/Makefile Normal file
View file

@ -0,0 +1,9 @@
#
# Makefile for LinuxBIOS architectures
#
# (c) 2006 coresystems GmbH
#
obj-$(CONFIG_ARCH_X86) += x86/
obj-$(CONFIG_ARCH_POWERPC) += powerpc/

8
arch/x86/Makefile Normal file
View file

@ -0,0 +1,8 @@
#
# Makefile for LinuxBIOS x86 architecture
#
# (c) 2006 coresystems GmbH
#
obj-y += init/

8
arch/x86/init/Makefile Normal file
View file

@ -0,0 +1,8 @@
#
# Makefile for LinuxBIOS x86 architecture
#
# (c) 2006 coresystems GmbH
#
obj-y += init.o

View file

@ -1,11 +1,8 @@
#
# Makefile for this mainboard
#
# not configurable
LBARCH=x86
obj-y = mainboard.o setup_before_car.o
core-$(UNCOMPRESSORS) += uncompressors
$(obj)/mainboard.o: $(obj)/dtc.h