diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-02-13 20:11:42 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-02-13 20:11:42 +0000 |
commit | d5e463c5e8301d55027ae6a717a45a908679546d (patch) | |
tree | 5ef48e7856744f8aa1b9c10ae0b0ef7c209f233d | |
parent | 8a297b512747ece7873ec55637b3fad51e5c63b6 (diff) |
add silentoldconfig target
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index a0f4f38c6..c5d5e2bcb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -8,7 +8,7 @@ #-------------------------------------------------------------- # You shouldn't need to mess with anything beyond this point... #-------------------------------------------------------------- -noconfig_targets := menuconfig config oldconfig randconfig \ +noconfig_targets := menuconfig config oldconfig silentoldconfig randconfig \ defconfig allyesconfig allnoconfig clean distclean \ release dist tags @@ -301,6 +301,9 @@ config: extra/config/conf oldconfig: extra/config/conf $(Q)./extra/config/conf -o extra/Configs/Config.in +silentoldconfig: extra/config/conf + $(Q)./extra/config/conf -s extra/Configs/Config.in + randconfig: extra/config/conf $(Q)./extra/config/conf -r extra/Configs/Config.in |