Makefile.help 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 object files'
  10. @echo ' realclean - delete temporary object file, including dependencies'
  11. @echo ' distclean - delete all non-source files (including .config)'
  12. @echo
  13. @echo 'Build:'
  14. @echo ' all - libraries and generated headers'
  15. @echo ' pregen - generate headers'
  16. @echo
  17. @echo 'Configuration:'
  18. @echo ' allnoconfig - disable all symbols in .config'
  19. @echo ' allyesconfig - enable all symbols in .config (see defconfig)'
  20. @echo ' config - text based configurator (of last resort)'
  21. @echo ' defconfig - set .config to arch-specific defaults'
  22. @echo ' menuconfig - interactive curses-based configurator'
  23. @echo ' oldconfig - resolve any unresolved symbols in .config'
  24. @echo ' silentoldconfig - resolve any unresolved symbols in .config, silently'
  25. @echo ' randconfig - generate a random .config'
  26. @echo
  27. @echo 'Installation:'
  28. @echo ' install - install both the runtime and the headers'
  29. @echo ' install_runtime - install the libraries'
  30. @echo ' install_dev - install all headers and static libs'
  31. @echo ' install_headers - install headers excluding generated ones'
  32. @echo
  33. @echo 'Development:'
  34. @echo ' check - run testsuite'
  35. @echo ' test_compile - compile testsuite binaries'
  36. @echo ' release - create a distribution tarball'
  37. @echo