From 8e9e2ae90f4808879f1dd12b6ddb2bd06a7e79f6 Mon Sep 17 00:00:00 2001 From: PartialVolume Date: Sun, 31 Jan 2021 00:15:58 +0000 Subject: [PATCH] Update README.md with make format If submitting pull requests, you must `make format` prior to commiting code and submitting a pull request otherwise you pull request will fail the CI that checks formatting. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4242dd8..1d61abd 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,7 @@ First create all the autoconf files: Then compile & install using the following standard commands: ``` ./configure +make format (only required if submitting pull requests) make make install ``` @@ -125,6 +126,7 @@ This can be done using the following compile commands: ``` ./configure --prefix=/usr CFLAGS='-O0 -g -Wall -Wextra' +make format (necessary if submitting pull requests) make make install ```