-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
25 lines (21 loc) · 1.04 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
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: atabiti <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2022/01/06 11:18:45 by atabiti #+# #+# #
# Updated: 2022/01/13 10:51:19 by atabiti ### ########.fr #
# #
# **************************************************************************** #
NAME : client server
CC = gcc
FLAGS = -Wall -Wextra -Werror
all: $(NAME)
$(NAME) :
CC FLAGS client.c server.c
clean :
rm server client
fclean : clean
re : fclean all