summaryrefslogtreecommitdiff
path: root/Makefile.help
blob: a2087164bdb51a0153bbc67021cc6bcbb813ca44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# 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 object files'
	@echo '  realclean		- delete temporary object file, including dependencies'
	@echo '  distclean		- delete all non-source files (including .config)'
	@echo
	@echo 'Build:'
	@echo '  all			- libraries and generated headers'
	@echo '  pregen		- generate headers'
	@echo '  utils			- build target utilities'
	@echo '			  (readelf, ldd, ldconfig, locale, iconv)'
	@echo '  hostutils		- build host utilities (see utils)'
	@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 excluding generated ones'
	@echo '  install_utils		- install target utilities'
	@echo '  install_hostutils	- install host utilities'
	@echo
	@echo 'Development:'
	@echo '  check			- run testsuite'
	@echo '  test_compile		- compile testsuite binaries'
	@echo '  release		- create a distribution tarball'
	@echo
	@echo 'Environment variables:'
	@echo '  V="" 			- Quiet build (default)'
	@echo '  V=1			- Verbose build'
	@echo '  V=2			- Very verbose build'
	@echo '  CROSS=		- Override CROSS_COMPILER_PREFIX from .config'
	@echo '  SHELL=		- Shell to use for make'
	@echo '  CONFIG_SHELL=		- Shell to use for menuconfig'
	@echo
	@echo '  PREFIX=		- Prepended prefix'
	@echo '  RUNTIME_PREFIX=	- Prefix for the libdir containing shared objects'
	@echo '			  (usually "/")'
	@echo '  DEVEL_PREFIX=		- Prefix for the libdir containing static objects'
	@echo '			  and the include dir (usually "/usr")'
	@echo '  SHARED_LIB_LOADER_PREFIX=	- Directory where the shared loader resides.'
	@echo '			  (usually "/lib")'