ttyplot

Realtime terminal plotter
git clone git://git.sgregoratto.me/ttyplot
Log | Files | Refs | README | LICENSE

commit 7f22d1fa1a150649de7b0df1a53c5e97a401943f
parent 2461fbc04a0cbdab7508bd1a87a8b0fb638881a0
Author: Antoni Sawicki <as@tenoware.com>
Date:   Mon, 15 Oct 2018 15:00:05 -0700

added makefile

Diffstat:
AMakefile | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -0,0 +1,8 @@ + +all: ttyplot + +ttyplot: ttyplot.c + gcc ttyplot.c -o ttyplot -Wall -O3 -lncurses + +clean: + rm -f ttyplot