-
-
Notifications
You must be signed in to change notification settings - Fork 226
/
Copy pathMakefile
48 lines (37 loc) · 816 Bytes
/
Makefile
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
47
48
SHELL = /bin/bash
TOOLS="./tools"
.PHONY: help run kill status monitor errors
help:
@ echo ""
@ echo "Usage:"
@ echo " setup: Setup Project"
@ echo " run: Launch the Bot"
@ echo " kill: 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 ""
setup:
@ chmod +x $(TOOLS)/setup
@ $(TOOLS)/setup
run:
@ chmod +x $(TOOLS)/run
@ $(TOOLS)/run
kill:
@ chmod +x $(TOOLS)/kill
@ $(TOOLS)/kill
status:
@ chmod +x $(TOOLS)/status
@ $(TOOLS)/status
monitor:
@ chmod +x $(TOOLS)/monitor
@ $(TOOLS)/monitor
errors:
@ chmod +x $(TOOLS)/check_errors
@ $(TOOLS)/check_errors
catcfgchat:
@ chmod +x $(TOOLS)/catcfgchat
@ $(TOOLS)/catcfgchat
stats:
@ chmod +x $(TOOLS)/stats
@ $(TOOLS)/stats