summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e8115cd
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,18 @@
+BINARY=hn-crawler
+
+all: build run
+
+build:
+ go build -o $(BINARY)
+
+run:
+ ./$(BINARY)
+
+info: build
+ ./$(BINARY) --loglevel=info
+
+debug: build
+ ./$(BINARY) -d
+
+clean:
+ rm $(BINARY)