aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 16 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 626d633..89cb00a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,15 @@
+# **************************************************************************** #
+# #
+# ::: :::::::: #
+# Makefile :+: :+: :+: #
+# +:+ +:+ +:+ #
+# By: cacharle <marvin@42.fr> +#+ +:+ +#+ #
+# +#+#+#+#+#+ +#+ #
+# Created: 2020/02/08 03:06:59 by cacharle #+# #+# #
+# Updated: 2020/02/08 03:07:01 by cacharle ### ########.fr #
+# #
+# **************************************************************************** #
+
RM = rm -f
UNAME = $(shell uname)
@@ -10,7 +22,7 @@ endif
LIBASM_PATH = ../libasm
CC = gcc
-CCFLAGS = -I. -Wall -Wextra
+CCFLAGS = -I. -Wall -Wextra -g
LDFLAGS = -L$(LIBASM_PATH) -lasm
NAME = runtest
@@ -26,10 +38,11 @@ SRC = main.c \
test/ft_atoi_base_test.c \
test/ft_list_size_test.c \
test/ft_list_push_front_test.c \
+ test/ft_list_sort_test.c \
functions_reference/ref_ft_atoi_base.c \
functions_reference/ref_ft_list_size.c \
- functions_reference/ref_ft_list_push_front.c
- # ft_list_sort_test.c ft_list_remove_if_test.c \
+ functions_reference/ref_ft_list_push_front.c \
+ functions_reference/ref_ft_list_sort.c
OBJ = $(SRC:.c=.o)