aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2025-01-20 18:49:32 +0100
committerGitHub2025-01-20 18:49:32 +0100
commit63a78c5ecea8acf1d8d7096bc693f4b489c3aab4 (patch)
treeb257a3786ded25e3d1bd9b1071a85cd3b6fe9f60 /Makefile
parent9fa887da20e409c2f25fac44b57f999e508a30ea (diff)
parentee1ea5ebfd335580cae3f05c814887547e10ac2b (diff)
downloadminishell-63a78c5ecea8acf1d8d7096bc693f4b489c3aab4.tar.gz
minishell-63a78c5ecea8acf1d8d7096bc693f4b489c3aab4.zip
Merge pull request #31 from dpu-kaiser/some-fixes
Some fixes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9cfa670..b3a18f3 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,8 @@ 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 create_files.c builtins_part_three.c handle_redir.c
+ read_heredoc.c create_files.c builtins_part_three.c handle_redir.c \
+ praise_the_norme.c
OBJ_DIR := _obj
OBJ := $(addprefix $(OBJ_DIR)/, $(SRC:%.c=%.o))