mirror of
https://github.com/charmbracelet/glow
synced 2024-11-10 06:04:18 +00:00
fce3edf7db
* feat!: cleanup Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * more cleanup Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * fix: more cleanup Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * fix: more cleanup --------- Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
17 lines
202 B
Makefile
17 lines
202 B
Makefile
# 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
|