-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
34 lines (27 loc) · 1.22 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: escura <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2024/05/04 14:20:53 by escura #+# #+# #
# Updated: 2024/05/04 15:33:34 by escura ### ########.fr #
# #
# **************************************************************************** #
OBJS = ft_destructors.o ft_allocs.o ft_utils.o ft_init.o
SOURCE = ft_destructors.c ft_allocs.c ft_utils.c ft_init.c
HEADER = ft_alloc.h
OUT = ft_alloc.a
CC = gcc
FLAGS = -g -c -Wall -Wextra -Werror
LFLAGS =
all: $(OUT)
$(OUT): $(OBJS)
ar rcs $(OUT) $(OBJS)
clean:
rm -f $(OBJS)
fclean: clean
rm -f $(OUT)
re: fclean all
.PHONY: all clean fclean