coreboot-kgpe-d16/util/crossgcc/Makefile
Jonathan A. Kollasch 4b8f779278 crossgcc: invoke buildgcc with bash, instead of relying on #!/bin/bash
Change-Id: I09192e57e2535b2f8f98cabeb755f10c5520c499
Signed-off-by: Jonathan A. Kollasch <jakllsch@kollasch.net>
Reviewed-on: http://review.coreboot.org/151
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Tested-by: build bot (Jenkins)
2011-08-14 08:03:55 +02:00

13 lines
156 B
Makefile

all: build
build:
bash ./buildgcc
.PHONY: build-without-gdb
build-without-gdb:
bash ./buildgcc --skip-gdb
clean:
rm -rf xgcc
.PHONY: all build clean