diff options
author | Peter Stuge <peter@stuge.se> | 2011-06-09 05:04:20 +0200 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2011-06-09 06:09:17 +0200 |
commit | cc5dd98c1b93281651781643dfbc7efc7f34a174 (patch) | |
tree | 019a5c2d8c2251bb6c436277285fe5aa7c6f235b /util | |
parent | ceacd77356259b23aa22a5beb34b6e19a0c7912c (diff) |
util/crossgcc: Add build-without-gdb Makefile target
Change-Id: I5d02f1a23e54aa67be0cc01d921898c28c22f8e4
Signed-off-by: Peter Stuge <peter@stuge.se>
Reviewed-on: http://review.coreboot.org/16
Tested-by: build bot (Jenkins)
Reviewed-by: Marshall Buschman <mbuschman@lucidmachines.com>
Diffstat (limited to 'util')
-rw-r--r-- | util/crossgcc/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index 6aa07d6a2c..31f66569dd 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -3,6 +3,10 @@ all: build build: ./buildgcc +.PHONY: build-without-gdb +build-without-gdb: + ./buildgcc --skip-gdb + clean: rm -rf xgcc |