diff kconfig/Makefile @ 133:a459c6b39645 0.0.3

Fix makefile to defconfig properly, and leak in a bit of the new test infrastructure so I don't have to revert it to check this in. :)
author Rob Landley <rob@landley.net>
date Mon, 18 Jun 2007 01:09:00 -0400
parents 4dc8017fdb0e
children d4176f3f3835
line wrap: on
line diff
--- a/kconfig/Makefile	Mon Jun 18 01:00:32 2007 -0400
+++ b/kconfig/Makefile	Mon Jun 18 01:09:00 2007 -0400
@@ -6,7 +6,7 @@
 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 @@
 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::