mirror of
https://github.com/charmbracelet/glow
synced 2024-11-10 14:14:17 +00:00
19 lines
236 B
Makefile
19 lines
236 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
|
|
export GLOW_UI_LOGFILE=debug.log
|
|
./glow
|
|
|
|
log:
|
|
> debug.log
|
|
tail -f debug.log
|