aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile40
1 files changed, 20 insertions, 20 deletions
diff --git a/Makefile b/Makefile
index 267f6b7b6..bd8cef6a6 100644
--- a/Makefile
+++ b/Makefile
@@ -111,32 +111,32 @@ _all: all
111 111
112help: 112help:
113 @echo 'Cleaning:' 113 @echo 'Cleaning:'
114 @echo ' clean - delete temporary files created by build' 114 @echo ' clean - delete temporary files created by build'
115 @echo ' distclean - delete all non-source files (including .config)' 115 @echo ' distclean - delete all non-source files (including .config)'
116 @echo 116 @echo
117 @echo 'Build:' 117 @echo 'Build:'
118 @echo ' all - Executable and documentation' 118 @echo ' all - Executable and documentation'
119 @echo ' busybox - the swiss-army executable' 119 @echo ' busybox - the swiss-army executable'
120 @echo ' doc - docs/BusyBox.{txt,html,1}' 120 @echo ' doc - docs/BusyBox.{txt,html,1}'
121 @echo 121 @echo
122 @echo 'Configuration:' 122 @echo 'Configuration:'
123 @echo ' allnoconfig - disable all symbols in .config' 123 @echo ' allnoconfig - disable all symbols in .config'
124 @echo ' allyesconfig - enable (almost) all symbols in .config' 124 @echo ' allyesconfig - enable (almost) all symbols in .config'
125 @echo ' allbareconfig - enable all basics without any features' 125 @echo ' allbareconfig - enable all basics without any features'
126 @echo ' config - text based configurator (of last resort)' 126 @echo ' config - text based configurator (of last resort)'
127 @echo ' defconfig - set .config to defaults' 127 @echo ' defconfig - set .config to defaults'
128 @echo ' menuconfig - interactive curses-based configurator' 128 @echo ' menuconfig - interactive curses-based configurator'
129 @echo ' oldconfig - resolve any unresolved symbols in .config' 129 @echo ' oldconfig - resolve any unresolved symbols in .config'
130 @echo 130 @echo
131 @echo 'Installation:' 131 @echo 'Installation:'
132 @echo ' install - install busybox into $prefix' 132 @echo ' install - install busybox into $prefix'
133 @echo ' uninstall' 133 @echo ' uninstall'
134 @echo 134 @echo
135 @echo 'Development:' 135 @echo 'Development:'
136 @echo ' check - run the test suite for all applets' 136 @echo ' check - run the test suite for all applets'
137 @echo ' randconfig - generate a random configuration' 137 @echo ' randconfig - generate a random configuration'
138 @echo ' release - create a distribution tarball' 138 @echo ' release - create a distribution tarball'
139 @echo ' sizes - show size of all enabled busybox symbols' 139 @echo ' sizes - show size of all enabled busybox symbols'
140 @echo 140 @echo
141 141
142 142
@@ -222,7 +222,7 @@ LIBBUSYBOX_SONAME:=$(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL
222DO_INSTALL_LIBS:=$(LD_LIBBUSYBOX) \ 222DO_INSTALL_LIBS:=$(LD_LIBBUSYBOX) \
223 $(LD_LIBBUSYBOX).$(MAJOR_VERSION) \ 223 $(LD_LIBBUSYBOX).$(MAJOR_VERSION) \
224 $(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION) 224 $(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION)
225 225
226ifeq ($(CONFIG_BUILD_AT_ONCE),y) 226ifeq ($(CONFIG_BUILD_AT_ONCE),y)
227# Which parts of the internal libs are requested? 227# Which parts of the internal libs are requested?
228# Per default we only want what was actually selected. 228# Per default we only want what was actually selected.
@@ -426,7 +426,7 @@ clean:
426 docs/busybox.pod docs/busybox.net/busybox.html \ 426 docs/busybox.pod docs/busybox.net/busybox.html \
427 docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \ 427 docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \
428 docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \ 428 docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
429 docs/busybox.net/BusyBox.html busybox.links include/_usage.h \ 429 docs/busybox.net/BusyBox.html busybox.links \
430 $(DO_INSTALL_LIBS) $(LIBBUSYBOX_SONAME) \ 430 $(DO_INSTALL_LIBS) $(LIBBUSYBOX_SONAME) \
431 .config.old busybox 431 .config.old busybox
432 - rm -rf _install testsuite/links 432 - rm -rf _install testsuite/links
@@ -437,7 +437,7 @@ clean:
437 437
438distclean: clean 438distclean: clean
439 - $(RM_F) scripts/bb_mkdep 439 - $(RM_F) scripts/bb_mkdep
440 - rm -rf include/config include/config.h include/bb_config.h include/bbconfigopts.h 440 - rm -rf include/config $(DEP_INCLUDES)
441 - find . -name .depend -exec $(RM_F) {} \; 441 - find . -name .depend -exec $(RM_F) {} \;
442 $(RM_F) .config .config.old .config.cmd 442 $(RM_F) .config .config.old .config.cmd
443 443