aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index 17b6058..e9c1f0e 100644
--- a/README.md
+++ b/README.md
@@ -33,14 +33,15 @@ See [Bazel](http://www.bazel.io/)
The basic commands to build, test and install brotli are:
- $ mkdir out && cd out && cmake .. && make test
+ $ mkdir out && cd out && cmake .. && make
+ $ make test
$ make install
You can use other [CMake](https://cmake.org/) configuration. For example, to
build static libraries and use a custom installation directory:
- $ mkdir out-shared && \
- cd out-shared && \
+ $ mkdir out-static && \
+ cd out-static && \
cmake .. -DBUILD_SHARED_LIBS=0 -DCMAKE_INSTALL_PREFIX='/my/install/dir/'
$ make install