1
0
libft_new/Makefile

63 lines
1.6 KiB
Makefile
Raw Normal View History

2023-11-03 16:21:15 +01:00
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2023/11/01 11:03:22 by adjoly #+# #+# #
2023-11-04 18:37:19 +01:00
# Updated: 2023/11/04 15:37:27 by adjoly ### ########.fr #
2023-11-03 16:21:15 +01:00
# #
# **************************************************************************** #
NAME = libft.a
2023-11-03 19:49:13 +01:00
CC = clang
2023-11-03 16:21:15 +01:00
SRCS = ft_atoi.c \
ft_bzero.c \
ft_isalnum.c \
ft_isalpha.c \
ft_isascii.c \
ft_isdigit.c \
ft_putchar_fd.c \
ft_putnbr_fd.c \
ft_putstr_fd.c \
ft_strdup.c \
2023-11-03 16:21:15 +01:00
ft_memcpy.c \
ft_memset.c \
ft_strlcpy.c \
ft_strlen.c \
ft_substr.c \
ft_tolower.c \
ft_toupper.c \
2023-11-04 18:37:19 +01:00
ft_strlcat.c \
ft_strjoin.c \
2023-11-03 16:21:15 +01:00
OBJS = $(SRCS:.c=.o)
FLAGS = -Werror -Wall -Wextra
HEADER = libft.h
$(NAME): $(OBJS)
ar -rcs $(NAME) $(OBJS)
2023-11-04 18:37:19 +01:00
so:
$(CC) -nostartfiles -fPIC $(CFLAGS) $(SRCS)
gcc -nostartfiles -shared -o libft.so $(OBJS)
2023-11-03 16:21:15 +01:00
%.o: %.c
$(CC) $(FLAGS) -I $(HEADER) $< -c -o $@
all: $(NAME)
clean:
rm -f $(OBJS)
fclean: clean
rm -f $(NAME)
re: fclean all
.PHONY: clean all re fclean