-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (25 loc) · 743 Bytes
/
Copy pathMakefile
File metadata and controls
29 lines (25 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
all:
nonce.png: nonce.csv
gnuplot -e " \
set terminal png size 1920,1080 font 'VL P Gothic,18'; \
set output '$@'; \
set datafile separator ','; \
set title 'Nonce Distribution'; \
set xlabel 'Block Height'; \
set ylabel 'Nonce'; \
set grid xtics ytics mxtics mytics; \
set nokey; \
plot '$<' using 1:2 with points pt 7 ps 0.1 lc rgb 'black'; \
"
nonce_eth.png: nonce_eth.csv
gnuplot -e " \
set terminal png size 7680,4320 font 'VL P Gothic,72'; \
set output '$@'; \
set datafile separator ','; \
set title 'Nonce Distribution'; \
set xlabel 'Block Height'; \
set ylabel 'Nonce'; \
set grid xtics ytics mxtics mytics; \
set nokey; \
plot '$<' using 1:2 with points pt 7 ps 0.001 lc rgb 'black'; \
"