aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2024-10-21 15:08:10 +0200
committerDominik Kaiser2024-10-21 15:08:10 +0200
commitb23715a8077cff0241b721889f17b3c3665d38f1 (patch)
tree485ce333a1425b99a95f343996e6cd4fb58abdab /Makefile
parent32e454ed265fc66dc45e43a3c68fbbe416fc16f9 (diff)
downloadminishell-b23715a8077cff0241b721889f17b3c3665d38f1.tar.gz
minishell-b23715a8077cff0241b721889f17b3c3665d38f1.zip
Add basic command execution
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3ae1359..7828678 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ 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 interpreter.c env.c \
- get_cmd_path.c
+ get_cmd_path.c env_to_strlst.c execute_cmd.c
OBJ_DIR := _obj
OBJ := $(addprefix $(OBJ_DIR)/, $(SRC:%.c=%.o))