-
-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathMakefile
More file actions
46 lines (36 loc) · 820 Bytes
/
Makefile
File metadata and controls
46 lines (36 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
SHELL = /bin/bash
TOOLS="./tools"
.PHONY: help start kill status monitor errors
help:
@ echo ""
@ echo "Usage:"
@ echo " setup: Setup Project"
@ echo " start: Launch the Bot"
@ echo " stop: Stop the Bot"
@ echo " status: Check if Bot is running"
@ echo " monitor: Check users captcha process"
@ echo " error: Check for errors in the Bot"
@ echo " stats: Show statistics"
@ echo ""
setup:
@ chmod +x $(TOOLS)/setup
@ $(TOOLS)/setup
start:
@ chmod +x $(TOOLS)/start
@ chmod +x $(TOOLS)/status
@ $(TOOLS)/start
stop:
@ chmod +x $(TOOLS)/stop
@ $(TOOLS)/stop
status:
@ chmod +x $(TOOLS)/status
@ $(TOOLS)/status
monitor:
@ chmod +x $(TOOLS)/monitor
@ $(TOOLS)/monitor
error:
@ chmod +x $(TOOLS)/check_errors
@ $(TOOLS)/check_errors
stats:
@ chmod +x $(TOOLS)/stats
@ $(TOOLS)/stats