From 1ab2fedd108b26c9624454a897e2c518aaff7d32 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 14 Jan 2020 15:50:09 +0100 Subject: Linux portability, moved tests to test/ dir --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ddc3162..468998a 100644 --- a/Makefile +++ b/Makefile @@ -16,13 +16,13 @@ LDFLAGS = -L$(LIBASM_PATH) -lasm NAME = runtest SRC = main.c \ helper.c \ - ft_strlen_test.c \ - ft_strcpy_test.c \ - ft_strcmp_test.c \ - ft_write_test.c \ - ft_read_test.c \ - ft_strdup_test.c \ - ft_atoi_base_test.c \ + test/ft_strlen_test.c \ + test/ft_strcpy_test.c \ + test/ft_strcmp_test.c \ + test/ft_write_test.c \ + test/ft_read_test.c \ + test/ft_strdup_test.c \ + test/ft_atoi_base_test.c \ functions_reference/ref_ft_atoi_base.c #ft_list_push_front_test.c ft_list_size_test.c \ # ft_list_sort_test.c ft_list_remove_if_test.c \ -- cgit