diff options
| author | Dominik Kaiser | 2024-08-11 12:15:40 +0200 |
|---|---|---|
| committer | Dominik Kaiser | 2024-08-11 12:15:40 +0200 |
| commit | f53acc629b1b3e7f4097eef1e26841ef0b9b24c6 (patch) | |
| tree | c66db435ce50b68f47de47ec632d767b118112ed /Makefile | |
| parent | 8cf2aec82f98094d8175c5e5daaaa115f9b64fc2 (diff) | |
| download | minishell-f53acc629b1b3e7f4097eef1e26841ef0b9b24c6.tar.gz minishell-f53acc629b1b3e7f4097eef1e26841ef0b9b24c6.zip | |
Fix parser bugs
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 print_ast.c + parse_cmd.c collect_assigns.c collect_redirs.c print_ast.c OBJ_DIR := _obj OBJ := $(addprefix $(OBJ_DIR)/, $(SRC:%.c=%.o)) |
