Libpayload needs to clear the bss region.
[coreboot.git] / Makefile.inc
index f8c4deb2acff1e8ed0acc3e11ae0bb2468c39581..8191a04692c61d55cb0978b94f8594f3d7417a51 100644 (file)
@@ -231,7 +231,14 @@ lint:
        test $$FAILED -eq 0 || { echo "ERROR: $$FAILED test(s) failed." &&  exit 1; }; \
        rm -f $$LINTLOG
 
+gitconfig:
+       if ! [ -x .git/hooks/commit-msg ]; then wget -O .git/hooks/commit-msg http://review.coreboot.org/tools/hooks/commit-msg; chmod +x .git/hooks/commit-msg; fi
+       (git config --global user.name >/dev/null && git config --global user.email >/dev/null) || (printf 'Please configure your name and email in git:\n\n git config --global user.name "Your Name Comes Here"\n git config --global user.email your.email@example.com\n'; exit 1)
+
 crossgcc: clean-for-update
+       $(MAKE) -C util/crossgcc build-without-gdb
+
+crosstools: clean-for-update
        $(MAKE) -C util/crossgcc build
 
 crossgcc-clean: clean-for-update