diff options
author | Rob Landley <rob@landley.net> | 2006-03-13 02:52:23 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-03-13 02:52:23 +0000 |
commit | 9dc6913896d3b5f7bb339731c042372601cc755b (patch) | |
tree | 4126a1c4c4c5297909f1f15c2b2c6c53b8b02ccf /Makefile | |
parent | e01d746fe962e1c3de57f8b909abc9801ecceff1 (diff) | |
download | busybox-9dc6913896d3b5f7bb339731c042372601cc755b.tar.gz |
Fix "rm .config;make menuconfig" to work like "rm .config; make" (I.E. do
defconfig first), and group busybox administrative settings into a sub-menu.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -162,7 +162,7 @@ help: ifneq ($(strip $(HAVE_DOT_CONFIG)),y) # Default target if none was requested explicitly -all: defconfig menuconfig ; +all: menuconfig ; ifneq ($(filter-out $(noconfig_targets),$(MAKECMDGOALS)),) # warn if no configuration exists and we are asked to build a non-config target @@ -191,6 +191,7 @@ scripts/config/mconf: scripts/config/Makefile $(Q)$(MAKE) -C scripts/config ncurses conf mconf menuconfig: scripts/config/mconf + @[ -f .config ] || make $(MAKEFLAGS) defconfig @./scripts/config/mconf $(CONFIG_CONFIG_IN) config: scripts/config/conf |