coreboot-kgpe-d16/util/crossgcc/Makefile
Patrick Georgi e420139a52 crossgcc: clean up aarch64 target integration
We already have aarch64 targets. Extend the "all" target.

Change-Id: I74d9bf5123695318c15b73c89f170f3ebb20aa80
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: http://review.coreboot.org/7729
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
2014-12-10 10:22:58 +01:00

27 lines
506 B
Makefile

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