From 33c3d999254bd12f86a6adc0c0ae2d90ffdef0c2 Mon Sep 17 00:00:00 2001 From: Jacob Dufault Date: Tue, 12 Dec 2017 00:11:46 -0800 Subject: [PATCH] Small readme tweaks --- README.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 41c911b5..06d8b4a6 100644 --- a/README.md +++ b/README.md @@ -45,19 +45,16 @@ Building cquery is simple. The external dependencies are few: $ clang --version # if missing, sudo apt-get install clang $ git clone https://github.com/jacobdufault/cquery --recursive $ cd cquery -$ ./waf configure --prefix ~/.local/stow/cquery -$ ./waf build -# -g -O3, built build/release/bin/cquery -$ ./waf install -# optional, copies the executable to $PREFIX/bin/cquery +$ ./waf configure --prefix ~/.local/stow/cquery # --prefix is optional, it specifies install directory +$ ./waf build # -g -O3, built build/release/bin/cquery +$ ./waf install # optional, copies the executable to $PREFIX/bin/cquery ``` For a debug build: ```bash $ ./waf configure --variant=debug -$ ./waf build --variant=debug -# -g -O0, built build/debug/bin/cquery +$ ./waf build --variant=debug # -g -O0, built build/debug/bin/cquery ``` ## Install extension