diff options
| author | horus | 2022-10-27 23:19:37 +0200 |
|---|---|---|
| committer | horus | 2022-10-27 23:19:37 +0200 |
| commit | de1377f669d64d2f08ae3b3432e789b98a90ead5 (patch) | |
| tree | b1d8b3a1b95adf864a97151e8f1c2f90c4bca032 | |
| parent | 80238c1c5e0b1ded84ea908c988d43b8509a66d8 (diff) | |
| download | curious-crawler-de1377f669d64d2f08ae3b3432e789b98a90ead5.tar.gz | |
add 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 |
