IT WORKS !

functionning ./lem_in that can read maps and display ants path
still need to clean leaks
still need remove debug info
This commit is contained in:
Tanguy MAZE
2019-04-09 19:09:29 +02:00
parent 434b629055
commit 3b893147e5
11 changed files with 364 additions and 235 deletions

View File

@@ -6,7 +6,7 @@
# By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2019/03/27 16:51:02 by tmaze #+# #+# #
# Updated: 2019/04/06 13:46:23 by tmaze ### ########.fr #
# Updated: 2019/04/09 18:17:50 by tmaze ### ########.fr #
# #
#******************************************************************************#
@@ -36,15 +36,20 @@ OBJDIR = objs
INCDIR = includes libft/includes
# Source files
SRC = lm_parser.c \
lm_mem_utils.c \
lm_graph_utils.c \
lm_check_errors.c \
bfs.c \
lst_ind.c \
edmunds_karp.c \
push_ants.c \
# lem_in.c
SRC = lm_parser.c \
lm_mem_utils.c \
lm_check_errors.c \
lm_data_utils.c \
lm_initdata.c \
lm_mem_utils.c \
lm_graph_utils.c \
lm_parser_error_check.c \
lm_utils_parser.c \
bfs.c \
lst_ind.c \
edmunds_karp.c \
push_ants.c \
lem_in.c
OBJ = $(SRC:.c=.o)