don't use make in cmake instructions (closes #236)

This commit is contained in:
Steven G. Johnson 2022-04-16 16:33:27 -04:00 committed by GitHub
parent 2484e2ed5e
commit f0b370716b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,9 +38,8 @@ For compilation of the C library, run `make`. You can also install the library
Alternatively, you can compile with `cmake`, e.g. by
```sh
mkdir build
cd build
cmake ..
make
cmake -S . -B build
cmake --build build
```
### Using other compilers