Skip to content
Snippets Groups Projects
Commit 4c0612ec authored by tag2y19's avatar tag2y19 Committed by Tom Greig
Browse files

Add install target and readme

parent af5dc136
Branches
No related tags found
No related merge requests found
CFLAGS = -Wall -Wextra -Werror -O2 $(shell pkg-config --cflags gtk4)
LDLIBS = $(shell pkg-config --libs gtk4)
PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin
e-plot: src/main.o
$(CC) -o $@ $^ $(LDLIBS)
src/main.o: src/main.c
install: e-plot
install -m 755 e-plot $(BINDIR)
E-Plot
======
This project has received funding from the European Union’s Horizon 2020
Research and Innovation Programme under Grant Agreement No 964593.
Requirements
------------
- Gtk 4
Building
--------
$ make
# make install
Usage
-----
$ {
> echo 'x,v';
> while true; do
> echo ${x:=0},$((25-(x%10-5)*(x%10-5)));
> x=$((x+1));
> sleep 0.1;
> done;
> } | ./e-plot -x x
See also:
$ e-plot --help
Keybinding:
h,l - Move left and right
H,L - Zoom out and in
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment