From ee0ed5e1087c8e9eea91caea6e82435475c05071 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 12 Feb 2023 17:47:01 -0500 Subject: Add brief installation instructions --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 0fe45b5..e6d79d7 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,22 @@ Record the memory usage of a process over time. +## Installation + +- **Requires** + - Linux + - `make` + - `cmake` (>= v3.x) + - `gcc` or `clang` (C99 compiler) + - `gnuplot` (optional) + +```shell +git clone https://github.com/jhunkeler/mstat && cd mstat +cmake -DCMAKE_INSTALL_PREFIX=/usr/local . +make +make install +``` + # How to use MSTAT ```text -- cgit