diff options
author | Rob Landley <rob@landley.net> | 2005-09-26 15:49:41 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-09-26 15:49:41 +0000 |
commit | d24eaac9e66d1f725a7b3c8e8d472845c3f63c39 (patch) | |
tree | 3ae62d40e1b978a4cbe531b545d6adee3085dcac /Makefile | |
parent | 709080087092133e3c46bf816d54f2c34c215b86 (diff) | |
download | busybox-w32-d24eaac9e66d1f725a7b3c8e8d472845c3f63c39.tar.gz busybox-w32-d24eaac9e66d1f725a7b3c8e8d472845c3f63c39.tar.bz2 busybox-w32-d24eaac9e66d1f725a7b3c8e8d472845c3f63c39.zip |
add "make help"
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -96,6 +96,36 @@ ifeq ($(skip-makefile),) | |||
96 | 96 | ||
97 | _all: all | 97 | _all: all |
98 | 98 | ||
99 | help: | ||
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 | |||
99 | ifeq ($(strip $(HAVE_DOT_CONFIG)),y) | 129 | ifeq ($(strip $(HAVE_DOT_CONFIG)),y) |
100 | 130 | ||
101 | all: busybox busybox.links doc | 131 | all: busybox busybox.links doc |