This commit is contained in:
Camille Chauvet
2022-10-04 14:21:55 +02:00
parent 8735f25286
commit be438f7dec
48 changed files with 848 additions and 116 deletions

View File

@ -6,7 +6,7 @@
# By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2022/09/27 08:39:27 by cchauvet #+# #+# #
# Updated: 2022/09/27 17:11:15 by cchauvet ### ########.fr #
# Updated: 2022/10/04 14:19:21 by cchauvet ### ########.fr #
# #
# **************************************************************************** #
@ -17,6 +17,8 @@ SRCS = ft_isalpha.c \
ft_isprint.c \
ft_strlen.c \
ft_memset.c \
ft_strdup.c \
ft_strndup.c \
ft_bzero.c \
ft_toupper.c \
ft_tolower.c \
@ -27,35 +29,65 @@ SRCS = ft_isalpha.c \
ft_memmove.c \
ft_memchr.c \
ft_memcmp.c \
ft_strdup.c \
ft_strnstr.c \
ft_strlcat.c \
ft_atoi.c \
ft_memccpy.c \
ft_calloc.c \
ft_strlcpy.c
ft_strlcpy.c \
ft_substr.c \
ft_strjoin.c \
ft_strtrim.c \
ft_itoa.c \
ft_split.c \
ft_strmapi.c \
ft_striteri.c \
ft_putchar_fd.c \
ft_putstr_fd.c \
ft_putendl_fd.c \
ft_putnbr_fd.c \
BSRCS = ft_lstnew.c \
ft_lstadd_front.c \
ft_lstsize.c \
ft_lstlast.c \
ft_lstadd_back.c \
ft_lstdelone.c \
ft_lstclear.c \
ft_lstiter.c \
ft_lstmap.c
OBJS = ${SRCS:.c=.o}
BOBJS = ${BSRCS:.c=.o}
NAME = libft
CFLAG = -Wall -Werror -Wextra
all:
gcc -c ${CFLAG} ${SRCS}
ar rc ${NAME}.a ${OBJS}
all: ${NAME}
${NAME}: ${OBJS}
ar -rc ${NAME}.a ${OBJS}
bonus: ${OBJS} ${BOJS}
ar -rc ${NAME} ${OBJS} ${BOBJS}
%.o: %.c libft.h
${CC} ${CFLAGS} -c -o $@ $<
clean:
rm -f ${OBJS}
fclean:
rm -f ${OBJS}
fclean: clean
rm -f ${NAME}.a
re:
rm -f ${OBJS}
rm -f ${NAME}.a
gcc -c ${CFLAG} ${SRCS}
ar rc ${NAME}.a ${OBJS}
re: fclean all
.PHONY: bonus clean fclean re
test: fclean
rm -f a.out
gcc ${CFLAGS} -g ${SRCS} ${BSRCS} main.c
so:
gcc -nostartfiles -fPIC $(CFLAG) $(SRCS)