diff options
author | Rob Landley <rob@landley.net> | 2007-06-18 01:09:00 -0400 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-06-18 01:09:00 -0400 |
commit | e35f2b831201cbe220e97d1b36f8fec3981a9065 (patch) | |
tree | c7979d63c0603dee897252116fb56f5e4557ad97 /kconfig/Makefile | |
parent | 132922a8789aa132069371416453b480306ddfdb (diff) | |
download | toybox-0.0.3.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/Makefile')
-rw-r--r-- | kconfig/Makefile | 6 |
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:: |