aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2024-08-11 11:18:26 +0200
committerDominik Kaiser2024-08-11 11:18:26 +0200
commit8cf2aec82f98094d8175c5e5daaaa115f9b64fc2 (patch)
tree9c06dfc42031efc26f1fdfeec4bca8c975c4199c /Makefile
parentc7a4494fd97b7e80665cbd47ed96bc37bf5800e5 (diff)
parent8abf7abdc9d49f52c4fcad0afc92730c4c195b7f (diff)
downloadminishell-8cf2aec82f98094d8175c5e5daaaa115f9b64fc2.tar.gz
minishell-8cf2aec82f98094d8175c5e5daaaa115f9b64fc2.zip
Merge changes from main into parser branch
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a56ada3..3450e3c 100644
--- a/Makefile
+++ b/Makefile
@@ -12,8 +12,8 @@ HEADERS = -I include -I $(LIB_DIR)/libft
VPATH := src
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 parser.c parse_cmd.c \
- print_ast.c
+ free_token.c new_node.c free_node.c tokenizer.c parser.c \
+ parse_cmd.c print_ast.c
OBJ_DIR := _obj
OBJ := $(addprefix $(OBJ_DIR)/, $(SRC:%.c=%.o))