diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-10-07 18:45:03 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-10-07 18:45:03 +0000 |
commit | a9d8913bc734039716e5c63c4b2173986f58b45d (patch) | |
tree | 385025f9bc1d7ca9aea2db14b8a5e9436ba610bc /Makefile | |
parent | b8faa7ea603cb91d742e2099d1f035787b3ea4eb (diff) | |
download | busybox-w32-a9d8913bc734039716e5c63c4b2173986f58b45d.tar.gz busybox-w32-a9d8913bc734039716e5c63c4b2173986f58b45d.tar.bz2 busybox-w32-a9d8913bc734039716e5c63c4b2173986f58b45d.zip |
- add config target bareconfig. Enables all applets but without any features.
Rob wanted to have regression tests if a bug crops up. Here you are wrt find :)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -9,7 +9,8 @@ | |||
9 | # You shouldn't need to mess with anything beyond this point... | 9 | # You shouldn't need to mess with anything beyond this point... |
10 | #-------------------------------------------------------------- | 10 | #-------------------------------------------------------------- |
11 | noconfig_targets := menuconfig config oldconfig randconfig \ | 11 | noconfig_targets := menuconfig config oldconfig randconfig \ |
12 | defconfig allyesconfig allnoconfig clean distclean \ | 12 | defconfig allyesconfig allnoconfig bareconfig \ |
13 | clean distclean \ | ||
13 | release tags | 14 | release tags |
14 | 15 | ||
15 | # the toplevel sourcedir | 16 | # the toplevel sourcedir |
@@ -118,7 +119,8 @@ help: | |||
118 | @echo 'Configuration:' | 119 | @echo 'Configuration:' |
119 | @echo ' allnoconfig - disable all symbols in .config' | 120 | @echo ' allnoconfig - disable all symbols in .config' |
120 | @echo ' allyesconfig - enable (almost) all symbols in .config' | 121 | @echo ' allyesconfig - enable (almost) all symbols in .config' |
121 | @echo ' config - text based configurator (of last resort).' | 122 | @echo ' bareconfig - enable all basics without any features' |
123 | @echo ' config - text based configurator (of last resort)' | ||
122 | @echo ' defconfig - set .config to defaults' | 124 | @echo ' defconfig - set .config to defaults' |
123 | @echo ' menuconfig - interactive curses-based configurator' | 125 | @echo ' menuconfig - interactive curses-based configurator' |
124 | @echo ' oldconfig - resolve any unresolved symbols in .config' | 126 | @echo ' oldconfig - resolve any unresolved symbols in .config' |
@@ -189,6 +191,10 @@ allnoconfig: scripts/config/conf | |||
189 | defconfig: scripts/config/conf | 191 | defconfig: scripts/config/conf |
190 | @./scripts/config/conf -d $(CONFIG_CONFIG_IN) | 192 | @./scripts/config/conf -d $(CONFIG_CONFIG_IN) |
191 | 193 | ||
194 | bareconfig: allyesconfig | ||
195 | sed -i '/FEATURE/d' .config | ||
196 | @./scripts/config/conf -d $(CONFIG_CONFIG_IN) | ||
197 | |||
192 | else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y) | 198 | else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y) |
193 | 199 | ||
194 | all: busybox busybox.links doc | 200 | all: busybox busybox.links doc |