aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2024-10-17 16:06:53 +0200
committerDominik Kaiser2024-10-17 16:06:53 +0200
commite7faa6525a007e463c06a20e438a2253287011f1 (patch)
treee187b2fd0bebf7d0b10a6d5cc74d1edc9b9f3a73 /Makefile
parent08f6e0bf8c5d3ebc7fb9b61f9913369cfdbebae2 (diff)
downloadminishell-e7faa6525a007e463c06a20e438a2253287011f1.tar.gz
minishell-e7faa6525a007e463c06a20e438a2253287011f1.zip
yes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 827c317..283db1a 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ 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 tokenizer.c parser.c \
- parse_cmd.c collect_redirs.c print_ast.c
+ parse_cmd.c collect_redirs.c print_ast.c interpreter.c env.c
OBJ_DIR := _obj
OBJ := $(addprefix $(OBJ_DIR)/, $(SRC:%.c=%.o))