-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
79 lines (53 loc) · 1.84 KB
/
Makefile
File metadata and controls
79 lines (53 loc) · 1.84 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: trobert <trobert@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2022/01/21 15:43:19 by trobert #+# #+# #
# Updated: 2022/05/02 15:10:28 by trobert ### ########.fr #
# #
# **************************************************************************** #
SRC = pipex.c\
pipex_utils.c\
parsing.c\
free_quit_functions.c\
BSRC = pipex_bonus.c\
init_var_bonus.c\
fd_functions_bonus.c\
cmds_functions_bonus.c\
pipex_utils_bonus.c\
here_doc_bonus.c\
free_quit_functions_bonus.c\
SRCS = ${addprefix srcs/, ${SRC}}
BSRCS = ${addprefix srcs_bonus/, ${BSRC}}
OBJS = ${SRCS:.c=.o}
BOBJS = ${BSRCS:.c=.o}
INC = -I./includes -I./libft/includes
NAME = pipex
BNAME = pipex_bonus
LIBFT = libft/superlibft.a
CC = cc -g
RM = rm -f
CFLAGS = -Wall -Wextra
MAKELIB = make -C libft/
CLEANLIB = make fclean -C libft/
all: libcompil ${NAME}
${NAME}: ${OBJS}
${CC} ${CFLAGS} ${OBJS} ${INC} ${LIBFT} -o ${NAME}
.c.o:
${CC} ${CFLAGS} ${INC} -c $< -o ${<:.c=.o}
bonus: libcompil ${BNAME}
${BNAME}: ${BOBJS}
${CC} ${CFLAGS} ${BOBJS} ${INC} ${LIBFT} -o ${BNAME}
libcompil :
${MAKELIB}
clean:
${RM} ${OBJS} ${BOBJS}
fclean: clean libclean
${RM} ${NAME} ${BNAME}
libclean:
${CLEANLIB}
re: fclean all
.PHONY: clean fclean bonus all re