diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2011-05-16 15:32:28 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2011-05-16 15:32:28 +0000 |
commit | 6c44550df1684d13cc2c1bf29410c99e91bfa204 (patch) | |
tree | 97bf85cf8b3fda771e53d2cc812d6406ac0bdca9 /Makefile.inc | |
parent | 0b933d4644a9cc73bf6f54ee148ddc3b0638a0f7 (diff) |
Move crossgcc rules to coreboot specific Makefile
Toplevel Makefile should (as far as possible) be coreboot-agnostic,
we have Makefile.inc for that.
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Acked-by: Patrick Georgi <patrick@georgi-clan.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6599 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.inc b/Makefile.inc index ea27dd11fd..0ef93777a8 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -230,3 +230,10 @@ lint: done; \ test $$FAILED -eq 0 || { echo "ERROR: $$FAILED test(s) failed." && exit 1; }; \ rm -f $$LINTLOG + +crossgcc: clean-for-update + $(MAKE) -C util/crossgcc build + +crossgcc-clean: clean-for-update + $(MAKE) -C util/crossgcc clean + |