aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@georgi-clan.de>2011-05-16 15:32:28 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2011-05-16 15:32:28 +0000
commit6c44550df1684d13cc2c1bf29410c99e91bfa204 (patch)
tree97bf85cf8b3fda771e53d2cc812d6406ac0bdca9
parent0b933d4644a9cc73bf6f54ee148ddc3b0638a0f7 (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
-rw-r--r--Makefile6
-rw-r--r--Makefile.inc7
2 files changed, 7 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 69e32a4d66..ac7115da30 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 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
+