aboutsummaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-02-05 18:17:00 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-02-05 18:17:00 +0200
commit605fff270cfdb0eb6ea10347cb307e7b45b179f4 (patch)
treeecd7fcc784e2df560f18595bfb8885b3ddcb02f5 /INSTALL
parentdc9e8eb9f053cd3160bbae6d76947ccb21231d64 (diff)
Cosmetic changes
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL29
1 files changed, 14 insertions, 15 deletions
diff --git a/INSTALL b/INSTALL
index 9169924..1c0e46c 100644
--- a/INSTALL
+++ b/INSTALL
@@ -6,29 +6,28 @@ Prerequisites
Installing the build system
- To install the build system you can say
+ To install the build system you can execute the following command
+ in the root directory of the source distribution:
$ make install
- in the root directory of the source distribution. If you want to
- install it to a different location (default is /usr/local) you
- can say
+ If you want to install it to a different location (default is
+ /usr/local) you can do
$ make install_prefix=/usr install
- Note that you need to install the build runtime into a place where
- `make' will look by default (normally /usr/include and /usr/local/include).
- Alternatively, you can install it into some other place (e.g., your home
- directory) and set MAKEFLAGS accordingly:
+ Note that you need to install the build runtime into a place where GNU
+ make will look by default (normally /usr/include and /usr/local/include).
+ Alternatively, you can install it into some other place (for example,
+ your home directory) and set MAKEFLAGS accordingly:
- $ make install install_prefix=/home/boris/local
- $ export MAKEFLAGS="-I /home/boris/local/include"
+ $ make install install_prefix=/home/user/local
+ $ export MAKEFLAGS="-I /home/user/local/include"
Building examples
- There is a makefile accompanying each example. Saying 'make'
- usually does the trick. Note that saying 'make install' in
- example directory will install what the example has built as
- opposed to installing the example itself.
-
+ There is a makefile accompanying each example. Running 'make' usually
+ does the trick. Note that running 'make install' in an example directory
+ will install what the example has built as opposed to installing the
+ example source code.