From 9cea5a5d5fbb023dbfd8b0d1b8212cb3f9e76755 Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Sun, 11 Sep 2022 09:48:07 -0700 Subject: [PATCH] wrap commands with code block, drop make test as missing.. --- README.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e9f6318..1387cf2 100644 --- a/README.md +++ b/README.md @@ -97,10 +97,11 @@ See https://www.ristretto.group for details, once that site is up. ## Build and Install - cmake -DCMAKE_INSTALL_PREFIX= - make - make test - make install +``` +cmake -DCMAKE_INSTALL_PREFIX= +make +make install +``` Most C source code is generated through a python script during the build. Some files holding tables are generated in one more step building an @@ -108,12 +109,16 @@ executable to generate them. They are thus stored in the source tree to help cross-compilation. The build script update them when their dependencies are modified, to build only these files: - make decaf_tables +``` +make decaf_tables +``` Doxygen generated documentation is located in ./doc directory in the binary tree after running - make doc +``` +make doc +``` ## Licensing