diff options
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | util/crossgcc/Makefile | 9 |
2 files changed, 15 insertions, 0 deletions
@@ -242,6 +242,12 @@ $(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/util/crossgcc/Makefile b/util/crossgcc/Makefile new file mode 100644 index 0000000000..6aa07d6a2c --- /dev/null +++ b/util/crossgcc/Makefile @@ -0,0 +1,9 @@ +all: build + +build: + ./buildgcc + +clean: + rm -rf xgcc + +.PHONY: all build clean |