aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-11-24 04:51:55 +0100
committerCharles <sircharlesaze@gmail.com>2019-11-24 04:51:55 +0100
commit997cb1c39c603512b7db760e9537c39ea3c68a38 (patch)
treeb09df18114389b331a8b07254c78f881afb222b5 /Makefile
parent5a47d63887a0878243b17799b19c4a0f76d3756d (diff)
downloadlibasm_test-997cb1c39c603512b7db760e9537c39ea3c68a38.tar.gz
libasm_test-997cb1c39c603512b7db760e9537c39ea3c68a38.tar.bz2
libasm_test-997cb1c39c603512b7db760e9537c39ea3c68a38.zip
Added reference bonus functions to test against assembly one
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index dd317a2..648cdbd 100644
--- a/Makefile
+++ b/Makefile
@@ -4,12 +4,15 @@ PYTHON = python3
LIBASM_PATH = ../libasm
CC = gcc
-CCFLAGS = -Wall -Wextra
+CCFLAGS = -I. -Wall -Wextra
LDFLAGS = -L$(LIBASM_PATH) -lasm
NAME = runtest
SRC = main.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 helper.c
+ ft_write_test.c ft_read_test.c ft_strdup_test.c helper.c \
+ ft_atoi_base_test.c ft_list_push_front_test.c ft_list_size_test.c \
+ ft_list_sort_test.c ft_list_remove_if_test.c \
+ functions_reference/ref_ft_atoi_base.c
OBJ = $(SRC:.c=.o)
run: pretty