-
Notifications
You must be signed in to change notification settings - Fork 0
/
Variables.mk
65 lines (44 loc) · 1.29 KB
/
Variables.mk
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
ifndef BONUS
NAME := ircserv
OBJ_DIR := .obj
SRC_DIR := Mandatory
INCLUDES := $(SRC_DIR)/Tools/ \
$(SRC_DIR)/Commands/ \
$(SRC_DIR)/Parsing/ \
$(SRC_DIR)/Class/Client/ \
$(SRC_DIR)/Class/Server/ \
$(SRC_DIR)/Class/Channel/ \
$(SRC_DIR)/Commands/KICK/ \
$(SRC_DIR)/Authentication/ \
SRCS := Core/main.cpp \
Core/Arguments_Parsing.cpp \
Core/Server_Initialization.cpp \
Core/Process_Server.cpp \
SRCS += Parsing/Parsing.cpp \
SRCS += Tools/cSplit.cpp \
SRCS += Class/Client/Client.cpp \
Class/Channel/Channel.cpp \
Class/Server/Server.cpp
SRCS += Commands/TOPIC/Topic.cpp \
SRCS += Commands/JOIN/Join.cpp \
Commands/JOIN/Join_parsing.cpp \
Commands/JOIN/Join_utilities.cpp \
SRCS += Commands/KICK/Kick.cpp \
Commands/KICK/ParsingKick.cpp \
SRCS += Commands/MODE/Mode.cpp \
Commands/MODE/Mode_parsing.cpp \
Commands/MODE/Mode_utilities.cpp \
SRCS += Commands/INVITE/Invite.cpp \
SRCS += Commands/WHO/Who.cpp \
SRCS += Authentication/Pass.cpp \
Authentication/Nick.cpp \
Authentication/User.cpp \
SRCS += Commands/PRIVMSG/Privmsg.cpp \
else
NAME := Bot
OBJ_DIR := .obj_bonus
SRC_DIR := Bonus
INCLUDES := $(SRC_DIR)/
SRCS := main.cpp \
Bot.cpp
endif