summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMax2018-02-06 00:35:39 +0100
committerMax2018-02-06 00:35:39 +0100
commit71950479fbd6088f249e5fda3b180f294d1d745d (patch)
tree06f360a7e02b7e0011bda815fa102ec54ae8d0ec /Makefile
parent13a807854bf4d0258723ec3152b217ed4cf8e051 (diff)
downloadalkobote-71950479fbd6088f249e5fda3b180f294d1d745d.tar.gz
Moves crawler to designated directory.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 7126e13..0000000
--- a/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-BINARY := $(notdir $(patsubst %/,%,$(dir $(abspath $(lastword $(MAKEFILE_LIST))))))
-MAINFILE :=
-SOURCEDIR := .
-SOURCES := $(shell find $(SOURCEDIR) -name '*.go')
-
-all: build run
-
-build: $(BINARY)
-
-$(BINARY): $(SOURCES)
- go build -o $(BINARY)
-
-run: build
- ./$(BINARY)
-
-clean:
- $(RM) $(RMFLAGS) $(BINARY)
-
-edit:
- $(EDITOR) $(MAINFILE) *.go