summaryrefslogtreecommitdiff
path: root/util/crossgcc/Makefile
diff options
context:
space:
mode:
authorCristian Magherusan-Stanciu <cristi.magherusan@gmail.com>2011-05-16 01:35:03 +0000
committerPeter Stuge <peter@stuge.se>2011-05-16 01:35:03 +0000
commit0b933d4644a9cc73bf6f54ee148ddc3b0638a0f7 (patch)
tree4fadc38d8dd648b5e868b47951d6941132b5c0bd /util/crossgcc/Makefile
parent3f0075b3d2acfb93f06f76d3b5e11e4ea6987efe (diff)
downloadcoreboot-0b933d4644a9cc73bf6f54ee148ddc3b0638a0f7.tar.xz
Add crossgcc target to automatically build reference toolchain
This means that a simple: $ make crossgcc creates the reference toolchain in the correct directory. Thanks to the dependency on the clean-for-update target, an existing .xcompile along with any compiled objects in build/ will be cleaned out, so the next build will automatically use the newly created reference toolchain. Signed-off-by: Cristian Magherusan-Stanciu <cristi.magherusan@gmail.com> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6598 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/crossgcc/Makefile')
-rw-r--r--util/crossgcc/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile
new file mode 100644
index 0000000000..6aa07d6a2c
--- /dev/null
+++ b/util/crossgcc/Makefile
@@ -0,0 +1,9 @@
+all: build
+
+build:
+ ./buildgcc
+
+clean:
+ rm -rf xgcc
+
+.PHONY: all build clean