diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-08-15 17:45:57 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-09-04 16:01:06 +0200 |
commit | 64761ce9a899954a12d8e3ae8b400c5ad9648137 (patch) | |
tree | fb3e5bc7645158fdcb530803d4a9ab9d09ff5e73 /MAKEHELP.md | |
parent | 19c6049a3d718a3200feab644d6bbbc6b5f2e74b (diff) | |
download | haskell-64761ce9a899954a12d8e3ae8b400c5ad9648137.tar.gz |
Build system: implement `make install-strip` (#1851)
Reviewed by: bgamari
Differential Revision: https://phabricator.haskell.org/D1209
Diffstat (limited to 'MAKEHELP.md')
-rw-r--r-- | MAKEHELP.md | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/MAKEHELP.md b/MAKEHELP.md index 3b58292600..8537cf9607 100644 --- a/MAKEHELP.md +++ b/MAKEHELP.md @@ -24,8 +24,10 @@ Common commands: Shows the targets available in <dir> - make install + - make install-strip - Installs GHC, libraries and tools under $(prefix) + Installs GHC, libraries and tools under $(prefix). The install-strip + variant strips executable files while installing them. - make sdist - make binary-dist @@ -33,13 +35,10 @@ Common commands: Builds a source or binary distribution respectively - `make show VALUE=<var>` - - Displays the value of make variable <var> - - `make show! VALUE=<var>` - Same as `make show`, but works right after ./configure (it skips reading - package-data.mk files). + Show the value of make variable <var>. The show! variant works right after + ./configure (it skips reading package-data.mk files). - make clean - make distclean @@ -76,9 +75,11 @@ Using `make` in subdirectories Make documentation in this directory (if any) - - `make show VALUE=var` + - `make show VALUE=<var>` + - `make show! VALUE=<var>` - Show the value of $(var) + Show the value of make variable <var>. The show! variant works right after + ./configure (it skips reading package-data.mk files). - `make <file>` |