diff --git a/README.md b/README.md index bd72246..8d9b0fe 100644 --- a/README.md +++ b/README.md @@ -30,18 +30,6 @@ Uninstall: ``` sudo make uni USRDIR=(Your installation dir) ``` -For build with with debug flags: -``` -make -j $(nproc) DEBUG= -``` -For build tests (needed gtest package as dependency): -``` -make tests -j $(nproc) DEBUG= -``` -And also flag for dynamic linking (if possible): -``` -make tools -j $(nproc) SHARED= -``` ## Documentation @@ -56,4 +44,17 @@ Now we would like to implement the following features: - BCH - Bech32 +For build with with debug flags: +``` +make -j $(nproc) DEBUG= +``` +For build tests (needed gtest package as dependency): +``` +make tests -j $(nproc) DEBUG= +``` +For generating coverage: +``` +make cover -j $(nproc) DEBUG= +``` + [⬆️ Contents](#contents)