OSDN Git Service

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