aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index dfe7a30..41551ec 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,8 @@ LIBS = -L $(LIB_DIR)/libft -lft -lreadline
HEADERS = -I include -I $(LIB_DIR)/libft
VPATH := src
-SRC := main.c debug_tools.c init.c signal_handling.c repl.c
+SRC := main.c debug_tools.c init.c signal_handling.c repl.c new_token.c \
+ free_token.c new_node.c free_node.c
OBJ_DIR := _obj
OBJ := $(addprefix $(OBJ_DIR)/, $(SRC:%.c=%.o))