aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-02-08 03:11:02 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-08 03:11:02 +0100
commit874ef49bff90ce144383efed0e69508586ff0d51 (patch)
tree3be088f443a6c91248e6a2939f5d5849194da48b /Makefile
parentaefcc43d573088dfddbbdcae9e8c2987d02186e3 (diff)
downloadlibasm_test-874ef49bff90ce144383efed0e69508586ff0d51.tar.gz
libasm_test-874ef49bff90ce144383efed0e69508586ff0d51.tar.bz2
libasm_test-874ef49bff90ce144383efed0e69508586ff0d51.zip
Added ft_list_sort.s tests and school headers on all files
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)