diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6fe98b6 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +BINARY=mostdiscussed-crawler + +all: build run + +build: + go build -o $(BINARY) + +run: + ./$(BINARY) + +info: build + ./$(BINARY) --loglevel=info + +debug: build + ./$(BINARY) -d |
