|
@@ -100,14 +100,26 @@ of features as a standalone library:
|
|
|
|
|
|
### `make` commands
|
|
|
|
|
|
-The default `make` command compiles the library. Enter `make help` to get an
|
|
|
-overview of the other available commands.
|
|
|
+The default `make` command (`make lib`) compiles the library. Enter `make help`
|
|
|
+to get an overview of the other available commands.
|
|
|
|
|
|
-`make install` and `make debug_install` install libraries and headers in the
|
|
|
+`make install` and installs libraries and headers in the
|
|
|
directories set by the environment variable `$PREFIX`. If this is unset, the
|
|
|
default `/usr/local` prefix is used.
|
|
|
|
|
|
-Options to compile with debug symbols are available.
|
|
|
+If `LOCAL` is set to anything else than `0`, the library will be installed in
|
|
|
+`$LOCAL_PREFIX` instead (by default,`$HOME/.local`.
|
|
|
+
|
|
|
+If `DEBUG` is set to anything else than `0`, the library will be compiled with
|
|
|
+debug symbols.
|
|
|
+
|
|
|
+E.g.
|
|
|
+
|
|
|
+```
|
|
|
+make install DEBUG=1 LOCAL=1
|
|
|
+```
|
|
|
+
|
|
|
+Installs the library with debug symbols in `~/.local`.
|
|
|
|
|
|
|
|
|
### Compile-Time defines (`-D[...]`)
|