aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2025-01-15 18:35:29 +0100
committerDominik Kaiser2025-01-15 18:35:29 +0100
commit79aeeaa6692c1c2c8282df751ff6fda1ba445883 (patch)
treee579137f50465efc1a554ff39b45912c2331069b /Makefile
parent29932bf9401f511cfa4b2fbb183bb174ecf13c24 (diff)
downloadminishell-79aeeaa6692c1c2c8282df751ff6fda1ba445883.tar.gz
minishell-79aeeaa6692c1c2c8282df751ff6fda1ba445883.zip
Refactor collect_redirs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 415d924..650f5e4 100644
--- a/Makefile
+++ b/Makefile
@@ -20,6 +20,7 @@ SRC := main.c debug_tools.c init.c signal_handling.c repl.c new_token.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 format_string.c \
builtins_part_one.c builtins_part_two.c env_tools.c error.c \
+ read_heredoc.c
OBJ_DIR := _obj
OBJ := $(addprefix $(OBJ_DIR)/, $(SRC:%.c=%.o))