-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
42 lines (30 loc) · 668 Bytes
/
Copy pathMakefile
File metadata and controls
42 lines (30 loc) · 668 Bytes
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
##
## Makefile for bsq in /home/sayyou_y/rendu/PSU-System-Unix/PSU_2014_my_select
##
## Made by Youssef Sayyouri
## Login <sayyou_y@epitech.net>
##
## Started on Tue Dec 16 11:46:07 2014 Youssef Sayyouri
## Last update Tue Feb 10 18:48:32 2015 Youssef Sayyouri
##
CC = gcc
RM = rm -f
CFLAGS += -Wextra -Wall -Werror
CFLAGS += -ansi -pedantic
CFLAGS += -I.
NAME = bsq
SRCS = main.c \
my_func.c \
tab_func.c \
get_next_line.c \
print_error.c \
OBJS = $(SRCS:.c=.o)
all : $(NAME)
$(NAME) : $(OBJS)
$(CC) $(OBJS) -o $(NAME) $(CFLAGS)
clean :
$(RM) $(OBJS)
fclean : clean
$(RM) $(NAME)
re : fclean all
.PHONY : all clean flcean re