summaryrefslogtreecommitdiffstats
path: root/INSTALL.md
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2015-03-24 16:02:03 +0100
committerDave Davenport <qball@gmpclient.org>2015-03-24 16:02:03 +0100
commit8e954466ed33ff18737d312f512fc643eaaf8c3f (patch)
tree7c3a3d1eaeacc5cc2d8c600d5eacc52ebc4b9667 /INSTALL.md
parent953fcf9ee804109fcec57e1af6a417500e5c2935 (diff)
Update install guide + print i3 status end of configure.
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md25
1 files changed, 23 insertions, 2 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 5cc34167..088a12d1 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -7,14 +7,15 @@
* C compiler that supports the c99 standard. (gcc or clang)
* make
* autoconf
-* automake (1.14.0 or up)
-* Dev packages of the external libraries
+* automake (1.11.3 or up)
+* Developer packages of the external libraries
### External libraries
* libxinerama
* libxft
* libpango
+* libpangoxft
* libx11
@@ -120,3 +121,23 @@ CFLAGS="-I/weird/i3/path/include/" ../configure
CFLAGS="-I/weird/i3/path/include/" make
```
+## Options for make
+
+When you run make you can tweak the build process a little.
+
+### Verbose output
+
+Show the commands called:
+
+```
+make V=1
+```
+
+### Debug build
+
+Compile with debug symbols and no optimization
+
+```
+make CFLAGS="-O0 -g3" clean rofi
+```
+