MycroftOS: Buildroot: Include menuconfig and savedefconfig to Makefile.

This commit is contained in:
Peter Steenbergen 2020-04-22 14:45:32 +02:00
parent 0f8f5e5eee
commit abd1c5f12e
1 changed files with 9 additions and 1 deletions

View File

@ -35,9 +35,17 @@ endif
clean:
$(MAKE) -C $(BUILDROOT) BR2_EXTERNAL=../$(BUILDROOT_EXTERNAL) clean
menuconfig:
$(MAKE) -C $(BUILDROOT) BR2_EXTERNAL=../$(BUILDROOT_EXTERNAL) menuconfig
savedefconfig:
$(MAKE) -C $(BUILDROOT) BR2_EXTERNAL=../$(BUILDROOT_EXTERNAL) savedefconfig
help:
@echo "Supported targets: $(TARGETS)"
@echo "Run 'make <target>' to build a target image."
@echo "Run 'make all' to build all target images."
@echo "Run 'make clean' to clean the build output."
@echo "Run 'make <target>-config' to configure buildroot for a target."
@echo "Run 'make <target>-config' to configure MycroftOS for a target."
@echo "Run 'make menuconfig' to update current config utilising a menu based program."
@echo "Run 'make savedefconfig' to save current config back to config directory."