-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (23 loc) · 1.16 KB
/
Copy pathMakefile
File metadata and controls
31 lines (23 loc) · 1.16 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
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: takokamo <takokamo@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2022/05/08 22:16:36 by takokamo #+# #+# #
# Updated: 2022/05/08 22:18:47 by takokamo ### ########.fr #
# #
# **************************************************************************** #
SRCS = cut_space.c dict_struct.c main.c nketa.c parse.c split.c functions.c miketa.c
OBJS = ${SRCS:.c=.o}
NAME = rush-02
CC+FLAGS = gcc -Werror -Wall -Wextra -o
RM = rm -f
${NAME}: ${OBJS}
${CC+FLAGS} ${NAME} ${OBJS}
all: ${NAME}
clean:
${RM} ${OBJS}
fclean: clean
${RM} ${NAME}