aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2005-09-26 15:49:41 +0000
committerRob Landley <rob@landley.net>2005-09-26 15:49:41 +0000
commitd24eaac9e66d1f725a7b3c8e8d472845c3f63c39 (patch)
tree3ae62d40e1b978a4cbe531b545d6adee3085dcac /Makefile
parent709080087092133e3c46bf816d54f2c34c215b86 (diff)
downloadbusybox-w32-d24eaac9e66d1f725a7b3c8e8d472845c3f63c39.tar.gz
busybox-w32-d24eaac9e66d1f725a7b3c8e8d472845c3f63c39.tar.bz2
busybox-w32-d24eaac9e66d1f725a7b3c8e8d472845c3f63c39.zip
add "make help"
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 01eec3b84..c3b54ad2f 100644
--- a/Makefile
+++ b/Makefile
@@ -96,6 +96,36 @@ ifeq ($(skip-makefile),)
96 96
97_all: all 97_all: all
98 98
99help:
100 @echo 'Cleaning:'
101 @echo ' clean - delete temporary files created by build'
102 @echo ' distclean - delete all non-source files (including .config)'
103 @echo
104 @echo 'Build:'
105 @echo ' all - Executable and documentation'
106 @echo ' busybox - the swiss-army executable'
107 @echo ' doc - docs/BusyBox.{txt,html,1}'
108 @echo
109 @echo 'Configuration:'
110 @echo ' allnoconfig - disable all symbols in .config'
111 @echo ' allyesconfig - enable (almost) all symbols in .config'
112 @echo ' config - text based configurator (of last resort).'
113 @echo ' defconfig - set .config to defaults'
114 @echo ' menuconfig - interactive curses-based configurator'
115 @echo ' oldconfig - resolve any unresolved symbols in .config'
116 @echo
117 @echo 'Installation:'
118 @echo ' install - install busybox and symlinks into $prefix'
119 @echo ' install-hardlinks - install busybox and hardlinks into $prefix'
120 @echo ' uninstall'
121 @echo
122 @echo 'Development:'
123 @echo ' check - run the test suite for all applets'
124 @echo ' randconfig - generate a random configuration'
125 @echo ' release - create a distribution tarball'
126 @echo ' sizes - show size of all enabled busybox symbols'
127 @echo
128
99ifeq ($(strip $(HAVE_DOT_CONFIG)),y) 129ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
100 130
101all: busybox busybox.links doc 131all: busybox busybox.links doc