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
This commit is contained in:
parent
0b933d4644
commit
6c44550df1
6
Makefile
6
Makefile
|
@ -242,12 +242,6 @@ $(shell mkdir -p $(obj) $(objutil)/kconfig/lxdialog $(additional-dirs) $(alldirs
|
||||||
cscope:
|
cscope:
|
||||||
cscope -bR
|
cscope -bR
|
||||||
|
|
||||||
crossgcc: clean-for-update
|
|
||||||
$(MAKE) -C util/crossgcc build
|
|
||||||
|
|
||||||
crossgcc-clean: clean-for-update
|
|
||||||
$(MAKE) -C util/crossgcc clean
|
|
||||||
|
|
||||||
doxy: doxygen
|
doxy: doxygen
|
||||||
doxygen:
|
doxygen:
|
||||||
$(DOXYGEN) documentation/Doxyfile.coreboot
|
$(DOXYGEN) documentation/Doxyfile.coreboot
|
||||||
|
|
|
@ -230,3 +230,10 @@ lint:
|
||||||
done; \
|
done; \
|
||||||
test $$FAILED -eq 0 || { echo "ERROR: $$FAILED test(s) failed." && exit 1; }; \
|
test $$FAILED -eq 0 || { echo "ERROR: $$FAILED test(s) failed." && exit 1; }; \
|
||||||
rm -f $$LINTLOG
|
rm -f $$LINTLOG
|
||||||
|
|
||||||
|
crossgcc: clean-for-update
|
||||||
|
$(MAKE) -C util/crossgcc build
|
||||||
|
|
||||||
|
crossgcc-clean: clean-for-update
|
||||||
|
$(MAKE) -C util/crossgcc clean
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue