aboutsummaryrefslogtreecommitdiff
path: root/kconfig
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2007-06-18 01:09:00 -0400
committerRob Landley <rob@landley.net>2007-06-18 01:09:00 -0400
commite35f2b831201cbe220e97d1b36f8fec3981a9065 (patch)
treec7979d63c0603dee897252116fb56f5e4557ad97 /kconfig
parent132922a8789aa132069371416453b480306ddfdb (diff)
downloadtoybox-e35f2b831201cbe220e97d1b36f8fec3981a9065.tar.gz
Fix makefile to defconfig properly, and leak in a bit of the new test0.0.3
infrastructure so I don't have to revert it to check this in. :)
Diffstat (limited to 'kconfig')
-rw-r--r--kconfig/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/kconfig/Makefile b/kconfig/Makefile
index 84ca1e70..7fc3faca 100644
--- a/kconfig/Makefile
+++ b/kconfig/Makefile
@@ -6,7 +6,7 @@ KCONFIG_TOP = Config.in
KCONFIG_PROJECT = ToyBox
obj = ./kconfig
PHONY += clean help oldconfig menuconfig config silentoldconfig \
- randconfig allyesconfig allnoconfig allmodconfig #defconfig
+ randconfig allyesconfig allnoconfig allmodconfig defconfig
menuconfig: $(obj)/mconf
$< $(KCONFIG_TOP)
@@ -29,8 +29,8 @@ allyesconfig: $(obj)/conf
allnoconfig: $(obj)/conf
$< -n $(KCONFIG_TOP)
-#defconfig: $(obj)/conf
-# $< -d $(KCONFIG_TOP)
+defconfig: $(obj)/conf
+ $< -D /dev/null $(KCONFIG_TOP)
# Help text used by make help
help::