aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2024-08-11 12:27:02 +0200
committerDominik Kaiser2024-08-11 12:27:02 +0200
commit99e8655aaf9827c7d5248c7f3d0913fcb1377cfb (patch)
treefcfc4288ea38348d707ad549cd4fa04c49a446b7 /Makefile
parentf53acc629b1b3e7f4097eef1e26841ef0b9b24c6 (diff)
downloadminishell-99e8655aaf9827c7d5248c7f3d0913fcb1377cfb.tar.gz
minishell-99e8655aaf9827c7d5248c7f3d0913fcb1377cfb.zip
Remove assigns
I found out that there's a difference between shell variables and env variables. We don't have to implement shell variables, so I removed all code that handles them.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d4778bf..827c317 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ 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_assigns.c collect_redirs.c print_ast.c
+ parse_cmd.c collect_redirs.c print_ast.c
OBJ_DIR := _obj
OBJ := $(addprefix $(OBJ_DIR)/, $(SRC:%.c=%.o))