-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
32 lines (25 loc) · 1.21 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
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: anieto <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2016/10/27 15:13:40 by anieto #+# #+# #
# Updated: 2017/01/09 22:02:47 by wdebs ### ########.fr #
# #
# **************************************************************************** #
CC = gcc
CFLAGS = -Wall -Wextra -Werror
NAME = fillit
SRCS = fillit_check.c solve_tet.c solve_things.c main.c
OBJS = fillit_check.o solve_tet.o solve_things.o main.o
HEAD = fillit.h
all: $(NAME)
$(NAME): $(OBJS)
$(CC) $(CFLAGS) $(SRCS) -I$(HEAD) -o $(NAME)
clean:
rm -f $(OBJS)
fclean: clean
rm -f $(NAME)
re: fclean all