-
Notifications
You must be signed in to change notification settings - Fork 0
/
source.mk
68 lines (63 loc) · 2.2 KB
/
source.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
66
67
68
##
## source.mk for PSU_2016_zappy
##
## Made by Guillaume CAUCHOIS
## Login <[email protected]>
##
## Started on Tue May 30 12:53:16 2017 Guillaume CAUCHOIS
## Last update Tue May 30 12:53:16 2017 Guillaume CAUCHOIS
##
SRC_DIR = ./src/
SRC_SERVER_DIR = $(SRC_DIR)server/
SRC_AI_DIR = $(SRC_DIR)ai/
SRC_SERVER = $(SRC_SERVER_DIR)main.c \
$(SRC_SERVER_DIR)check_waiting_cmds.c \
$(SRC_SERVER_DIR)utils_parsing.c \
$(SRC_SERVER_DIR)handle_parsing.c \
$(SRC_SERVER_DIR)map.c \
$(SRC_SERVER_DIR)player.c \
$(SRC_SERVER_DIR)player_b.c \
$(SRC_SERVER_DIR)command_look.c \
$(SRC_SERVER_DIR)look_utils.c \
$(SRC_SERVER_DIR)print_vision_a.c \
$(SRC_SERVER_DIR)print_vision_b.c \
$(SRC_SERVER_DIR)print_vision_c.c \
$(SRC_SERVER_DIR)socket.c \
$(SRC_SERVER_DIR)server.c \
$(SRC_SERVER_DIR)handle_io.c \
$(SRC_SERVER_DIR)client.c \
$(SRC_SERVER_DIR)waiting_cmds.c \
$(SRC_SERVER_DIR)execute_command.c \
$(SRC_SERVER_DIR)command.c \
$(SRC_SERVER_DIR)command_b.c \
$(SRC_SERVER_DIR)command_map.c \
$(SRC_SERVER_DIR)command_mct.c \
$(SRC_SERVER_DIR)connection_client.c \
$(SRC_SERVER_DIR)command_team.c \
$(SRC_SERVER_DIR)command_sgt.c \
$(SRC_SERVER_DIR)command_broadcast.c \
$(SRC_SERVER_DIR)command_inventory.c \
$(SRC_SERVER_DIR)command_incantation.c \
$(SRC_SERVER_DIR)utils_incantation_a.c \
$(SRC_SERVER_DIR)utils_incantation_b.c \
$(SRC_SERVER_DIR)utils_object_commands.c \
$(SRC_SERVER_DIR)command_take_object.c \
$(SRC_SERVER_DIR)command_put_object.c \
$(SRC_SERVER_DIR)command_move_player.c \
$(SRC_SERVER_DIR)command_connect_nbr.c \
$(SRC_SERVER_DIR)command_player.c \
$(SRC_SERVER_DIR)command_pin.c \
$(SRC_SERVER_DIR)team.c \
$(SRC_SERVER_DIR)communication.c \
$(SRC_SERVER_DIR)vision.c \
$(SRC_SERVER_DIR)lib/list.c \
$(SRC_SERVER_DIR)lib/send.c \
$(SRC_SERVER_DIR)lib/string.c
SRC_AI = $(SRC_AI_DIR)main.cpp \
$(SRC_AI_DIR)ZappException.cpp \
$(SRC_AI_DIR)EventHandler.cpp \
$(SRC_AI_DIR)Socket.cpp \
$(SRC_AI_DIR)Utils.cpp \
$(SRC_AI_DIR)zappy.cpp
OBJ_SERVER = $(SRC_SERVER:.c=.o)
OBJ_AI = $(SRC_AI:.cpp=.o)