Makefile.help 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # Makefile.help for uClibc
  2. #
  3. # Copyright (C) 2008 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. #
  7. help:
  8. @echo 'Cleaning:'
  9. @echo ' clean - delete temporary files created by build'
  10. @echo ' distclean - delete all non-source files (including .config)'
  11. @echo
  12. @echo 'Build:'
  13. @echo ' all - libraries and generated headers'
  14. @echo ' pregen - generated headers'
  15. @echo
  16. @echo 'Configuration:'
  17. @echo ' allnoconfig - disable all symbols in .config'
  18. @echo ' allyesconfig - enable all symbols in .config (see defconfig)'
  19. @echo ' config - text based configurator (of last resort)'
  20. @echo ' defconfig - set .config to arch-specific defaults'
  21. @echo ' menuconfig - interactive curses-based configurator'
  22. @echo ' oldconfig - resolve any unresolved symbols in .config'
  23. @echo ' silentoldconfig - resolve any unresolved symbols in .config, silently'
  24. @echo ' randconfig - generate a random .config'
  25. @echo
  26. @echo 'Installation:'
  27. @echo ' install - install both the runtime and the headers'
  28. @echo ' install_runtime - install the libraries'
  29. @echo ' install_dev - install all headers and static libs'
  30. @echo ' install_headers - install headers'
  31. @echo
  32. @echo 'Development:'
  33. @echo ' check - run testsuite'
  34. @echo ' test_compile - compile testsuite binaries'
  35. @echo ' release - create a distribution tarball'
  36. @echo