blob: 4985f56d66f6a461a9cf9b8b577954d0edc71783 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# This Makefile is just for development purposes
.PHONY: default clean glow run log
default: glow
clean:
rm -f ./glow
glow:
go build
run: clean glow
./glow
log:
tail -f ~/.cache/glow/glow.log
|