aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2025-01-16 19:16:44 +0100
committerDominik Kaiser2025-01-16 19:16:44 +0100
commit3392f2b811269f174620832d663b09ef4f4e43f3 (patch)
treef19d804b37896ea1aca7c3abe4d639e86154d0fe /Makefile
parent1032eefe7247cc5c240feedd2f49d8d69a326d79 (diff)
downloadminishell-3392f2b811269f174620832d663b09ef4f4e43f3.tar.gz
minishell-3392f2b811269f174620832d663b09ef4f4e43f3.zip
Create files
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 650f5e4..243e9fc 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +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
+ read_heredoc.c create_files.c
OBJ_DIR := _obj
OBJ := $(addprefix $(OBJ_DIR)/, $(SRC:%.c=%.o))