coreboot-kgpe-d16/util/crossgcc/Makefile
Stefan Reinauer 88c4939c1b make crossgcc: compile all required toolchains
The ARMv7 toolchain is now also needed for abuild (at least
if you want to be able to compile ARM images)

Change-Id: If1253203a2198f7dea632ba45540222ba3361932
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/2147
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marcj303@gmail.com>
2013-01-17 01:56:53 +01:00

15 lines
239 B
Makefile

all: build
build:
bash ./buildgcc -G -p i386-elf
bash ./buildgcc -G -p armv7a-eabi
.PHONY: build-without-gdb
build-without-gdb:
bash ./buildgcc -p i386-elf
bash ./buildgcc -p armv7a-eabi
clean:
rm -rf xgcc
.PHONY: all build clean