aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2025-01-14 16:40:30 +0100
committerGitHub2025-01-14 16:40:30 +0100
commit398b0d39cbbe2cdabbfae00f799181a37754d5c1 (patch)
tree397ae613dd39a35a6c91e7e30426f86ade4e24bb /Makefile
parent00ad7429f223c85e99da6ffa8f7dade0c73c97b5 (diff)
parent553204e584dd08987902c7693e47744192e6bd85 (diff)
downloadminishell-398b0d39cbbe2cdabbfae00f799181a37754d5c1.tar.gz
minishell-398b0d39cbbe2cdabbfae00f799181a37754d5c1.zip
Merge branch 'main' into echo-builtint
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 827c317..7828678 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,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 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 \
+ get_cmd_path.c env_to_strlst.c execute_cmd.c
OBJ_DIR := _obj
OBJ := $(addprefix $(OBJ_DIR)/, $(SRC:%.c=%.o))