diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 24 |
1 files changed, 14 insertions, 10 deletions
@@ -6,7 +6,7 @@ # By: cacharle <marvin@42.fr> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/10/08 15:45:53 by cacharle #+# #+# # -# Updated: 2019/10/25 03:31:58 by cacharle ### ########.fr # +# Updated: 2019/11/05 22:16:32 by cacharle ### ########.fr # # # # **************************************************************************** # @@ -17,15 +17,19 @@ CC = gcc CCFLAGS = -Wall -Wextra -Werror NAME = libft.a -SRC = ft_atoi.c ft_bzero.c ft_isalnum.c ft_isalpha.c ft_isascii.c ft_isdigit.c ft_isprint.c \ - ft_itoa.c ft_memalloc.c ft_memccpy.c ft_memchr.c ft_memcmp.c ft_memcpy.c ft_memdel.c \ - ft_memmove.c ft_memset.c ft_putchar.c ft_putchar_fd.c ft_putendl.c ft_putendl_fd.c \ - ft_putnbr.c ft_putnbr_fd.c ft_putstr.c ft_putstr_fd.c ft_strcat.c ft_strchr.c \ - ft_strclr.c ft_strcmp.c ft_strcpy.c ft_strdel.c ft_strdup.c ft_strequ.c ft_striter.c \ - ft_striteri.c ft_strjoin.c ft_strlcat.c ft_strlen.c ft_strmap.c ft_strmapi.c \ - ft_strncat.c ft_strncmp.c ft_strncpy.c ft_strnequ.c ft_strnew.c ft_strnstr.c \ - ft_strrchr.c ft_split.c ft_strstr.c ft_substr.c ft_strtrim.c ft_tolower.c \ - ft_toupper.c ft_strlcpy.c ft_calloc.c ft_strndup.c +SRC = ft_atoi.c ft_bzero.c ft_isalnum.c ft_isalpha.c ft_isascii.c ft_isdigit.c \ + ft_isprint.c ft_itoa.c ft_memalloc.c ft_memccpy.c ft_memchr.c \ + ft_memcmp.c ft_memcpy.c ft_memdel.c ft_memmove.c ft_memset.c \ + ft_putchar.c ft_putchar_fd.c ft_putendl.c ft_putendl_fd.c \ + ft_putnbr.c ft_putnbr_fd.c ft_putstr.c ft_putstr_fd.c ft_strcat.c \ + ft_strchr.c ft_strclr.c ft_strcmp.c ft_strcpy.c ft_strdel.c \ + ft_strdup.c ft_strequ.c ft_striter.c ft_striteri.c ft_strjoin.c \ + ft_strlcat.c ft_strlen.c ft_strmap.c ft_strmapi.c ft_strncat.c \ + ft_strncmp.c ft_strncpy.c ft_strnequ.c ft_strnew.c ft_strnstr.c \ + ft_strrchr.c ft_split.c ft_strstr.c ft_substr.c ft_strtrim.c \ + ft_tolower.c ft_toupper.c ft_strlcpy.c ft_calloc.c ft_strndup.c \ + ft_strjoin_free.c ft_strjoin_free_snd.c + OBJ = $(SRC:.c=.o) INCLUDE = libft.h |
