summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..b93836d
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,19 @@
+# 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:
+ GLOW_UI_LOGFILE=debug.log
+ > debug.log
+ tail -f debug.log