Merge branch 'tmaze'

merging algorithm to master of project
This commit is contained in:
Tanguy MAZE
2019-04-05 14:06:42 +02:00
7 changed files with 182 additions and 160 deletions

View File

@@ -6,7 +6,7 @@
# By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2019/03/27 16:51:02 by tmaze #+# #+# #
# Updated: 2019/03/31 19:48:45 by tmaze ### ########.fr #
# Updated: 2019/04/05 13:54:08 by tmaze ### ########.fr #
# #
#******************************************************************************#
@@ -27,7 +27,7 @@ endif
# Compilator
CC = gcc
FLAGS = -Wall -Wextra -Werror -g -O0 -fsanitize=address
FLAGS = -Wall -Wextra -Werror -g
# Folders
LIBDIR = libft
@@ -36,7 +36,15 @@ OBJDIR = objs
INCDIR = includes libft/includes
# Source files
SRC = lem_in.c lm_parser.c lm_mem_utils.c lm_graph_utils.c lm_check_errors.c \
SRC = lm_parser.c \
lm_mem_utils.c \
lm_graph_utils.c \
lm_check_errors.c \
bfs.c \
lst_ind.c \
edmunds_karp.c \
# lem_in.c \
OBJ = $(SRC:.c=.o)