summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-09-11 14:52:05 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-09-11 14:52:05 +0000
commit7d68065a272ef596f8d01173d4f9ccbd46e3b4fc (patch)
treea6e715cb284593adfc7a199e26f561b76df54000
parentc2e6798e398daca8e8930bee4e9332b2119024d7 (diff)
- add some helpful help text, as advertised.
-rw-r--r--Makefile1
-rw-r--r--Makefile.help37
2 files changed, 38 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4709fc2ca..793ca7879 100644
--- a/Makefile
+++ b/Makefile
@@ -11,3 +11,4 @@ top_builddir=./
#all: libs
include Makefile.in
include $(top_srcdir)Makerules
+include $(top_srcdir)Makefile.help
diff --git a/Makefile.help b/Makefile.help
new file mode 100644
index 000000000..9fc5469e2
--- /dev/null
+++ b/Makefile.help
@@ -0,0 +1,37 @@
+# Makefile.help for uClibc
+#
+# Copyright (C) 2008 Erik Andersen <andersen@uclibc.org>
+#
+# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+#
+
+help:
+ @echo 'Cleaning:'
+ @echo ' clean - delete temporary files created by build'
+ @echo ' distclean - delete all non-source files (including .config)'
+ @echo
+ @echo 'Build:'
+ @echo ' all - libraries and generated headers'
+ @echo ' pregen - generated headers'
+ @echo
+ @echo 'Configuration:'
+ @echo ' allnoconfig - disable all symbols in .config'
+ @echo ' allyesconfig - enable all symbols in .config (see defconfig)'
+ @echo ' config - text based configurator (of last resort)'
+ @echo ' defconfig - set .config to arch-specific defaults'
+ @echo ' menuconfig - interactive curses-based configurator'
+ @echo ' oldconfig - resolve any unresolved symbols in .config'
+ @echo ' silentoldconfig - resolve any unresolved symbols in .config, silently'
+ @echo ' randconfig - generate a random .config'
+ @echo
+ @echo 'Installation:'
+ @echo ' install - install both the runtime and the headers'
+ @echo ' install_runtime - install the libraries'
+ @echo ' install_dev - install all headers and static libs'
+ @echo ' install_headers - install headers'
+ @echo
+ @echo 'Development:'
+ @echo ' check - run testsuite'
+ @echo ' test_compile - compile testsuite binaries'
+ @echo ' release - create a distribution tarball'
+ @echo