From: Patrick Georgi Date: Mon, 16 May 2011 15:32:28 +0000 (+0000) Subject: Move crossgcc rules to coreboot specific Makefile X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=coreboot.git;a=commitdiff_plain;h=6c44550df1684d13cc2c1bf29410c99e91bfa204 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 Acked-by: Patrick Georgi git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6599 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- diff --git a/Makefile b/Makefile index 69e32a4d6..ac7115da3 100644 --- a/Makefile +++ b/Makefile @@ -242,12 +242,6 @@ $(shell mkdir -p $(obj) $(objutil)/kconfig/lxdialog $(additional-dirs) $(alldirs cscope: cscope -bR -crossgcc: clean-for-update - $(MAKE) -C util/crossgcc build - -crossgcc-clean: clean-for-update - $(MAKE) -C util/crossgcc clean - doxy: doxygen doxygen: $(DOXYGEN) documentation/Doxyfile.coreboot diff --git a/Makefile.inc b/Makefile.inc index ea27dd11f..0ef93777a 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 +