diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-04-27 00:06:47 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-04-27 00:06:47 +0000 |
commit | aba75460e4ca8415e9dd3b07ed3511126724dbd9 (patch) | |
tree | 59ec25b9058b3603276bb9f13c656dc67a1c6b73 | |
parent | 1323c940fd651a818e133f5c13f28b708998420a (diff) | |
download | busybox-aba75460e4ca8415e9dd3b07ed3511126724dbd9.tar.gz |
When the .config file is missing, supply a default one
and run menuconfig
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -159,6 +159,12 @@ $(TOPDIR)include/config.h: make oldconfig; \ fi; +$(TOPDIR).config: + cp $(TOPDIR)sysdeps/$(TARGET_OS)/defconfig $(TOPDIR).config + mkdir -p $(TOPDIR)include/config + $(MAKE) -C scripts/lxdialog all + $(BB_SHELL) scripts/Menuconfig sysdeps/$(TARGET_OS)/config.in + menuconfig: mkdir -p $(TOPDIR)include/config $(MAKE) -C scripts/lxdialog all |