Skip to content

Commit 7988f5d

Browse files
author
Allan BARRIELLE
committed
new
1 parent f50eba3 commit 7988f5d

File tree

160 files changed

+4709
-463
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

160 files changed

+4709
-463
lines changed

.DS_Store

-6 KB
Binary file not shown.

Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,23 @@
66
# By: abarriel <marvin@42.fr> +#+ +:+ +#+ #
77
# +#+#+#+#+#+ +#+ #
88
# Created: 2017/02/19 11:33:06 by abarriel #+# #+# #
9-
# Updated: 2017/02/19 11:33:07 by abarriel ### ########.fr #
9+
# Updated: 2017/03/13 11:15:29 by abarriel ### ########.fr #
1010
# #
1111
# **************************************************************************** #
1212

1313
NAME = lem_in
1414

15-
SRC = lemin.c parser.c room.c tube.c algo.c print.c path.c tools.c send.c
15+
SRC = lemin.c parser.c room.c tube.c algo.c print.c path.c tools.c send.c algo_.c
1616

1717
OBJ = $(addprefix srcs/,$(SRC:.c=.o))
1818

1919
INCLUDES = ./includes/lemin.h
2020

21+
LIBFT = $(shell find ./libft | grep "\.c")
2122
CFLAGS = -Wall -Wextra -Werror -I./includes/ -Ilibft/includes/
2223

23-
$(NAME): $(OBJ) $(INCLUDES)
24-
@make -C libft
24+
$(NAME): $(OBJ) $(INCLUDES) $(LIBFT)
25+
@make -C libft/
2526
@gcc $(OBJ) -o $(NAME) -L libft/ -lft
2627
@echo "Lem-in..."
2728

0 commit comments

Comments
 (0)