Fix: added back generics to the makefile

This commit is contained in:
Maieul BOYER 2024-04-29 13:59:34 +02:00
parent 4a8ab862ae
commit bab648545d
No known key found for this signature in database
2 changed files with 7 additions and 3 deletions

View file

@ -6,7 +6,7 @@
# By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2024/04/28 17:28:30 by maiboyer #+# #+# #
# Updated: 2024/04/29 13:46:19 by maiboyer ### ########.fr #
# Updated: 2024/04/29 13:59:16 by maiboyer ### ########.fr #
# #
# **************************************************************************** #
@ -28,7 +28,9 @@ LIB = ./libft/ft_bzero.c \
./libft/ft_strlen.c
SRC_DIR = ./sources
SRC = $(addprefix $(SRC_DIR)/,$(shell cat ./src.list))
SRC_DIR = ./output
SRC = $(addprefix $(SRC_DIR)/,$(shell cat ./src.list)) $(addprefix $(GEN_DIR)/,$(shell cat ./gen.list))
# Name
NAME = minishell
LIBDIRNAME = libft