Skip to content

Commit

Permalink
refactor: add new function
Browse files Browse the repository at this point in the history
  • Loading branch information
facetint committed Mar 29, 2024
1 parent f927c25 commit 840f4ae
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ MEMORY_ALLOCATOR_SOURCES = memory-allocator/aborter.c memory-allocator/allocator
SOURCES = src/execute/execute_utils.c src/builtin/cd.c src/builtin/exit.c src/builtin/export.c src/builtin/echo.c \
src/builtin/env.c src/builtin/pwd.c src/builtin/builtin.c src/builtin/unset.c get_next_line/get_next_line.c \
src/expander/expander_nonvariables.c src/env/env_utils.c src/lexer/utils.c src/handler.c src/env/env.c\
src/lexer/lexer.c src/lexer/unquote.c src/lexer/lexer_utils.c src/parser.c src/execute/execute.c \
src/lexer/lexer_error_message.c src/lexer/is_valid.c src/execute/error_message.c src/execute/dup2.c src/execute/heredoc.c src/expander/expander.c src/splitter.c src/lexer/syntax_analyzer.c src/signal.c $(MEMORY_ALLOCATOR_SOURCES)
src/lexer/lexer.c src/lexer/unquote.c src/lexer/lexer_utils.c src/execute/execute.c \
src/lexer/lexer_error_message.c src/lexer/is_valid.c src/execute/error_message.c src/execute/dup2.c \
src/parser/parser.c src/parser/parser_state.c src/parser/parser_utils.c src/execute/heredoc.c src/expander/expander.c src/splitter.c src/lexer/syntax_analyzer.c src/signal.c $(MEMORY_ALLOCATOR_SOURCES)

MINISHELL_SOURCES = src/main.c $(SOURCES)
MINISHELL_OBJECTS = $(MINISHELL_SOURCES:.c=.o)
Expand Down

0 comments on commit 840f4ae

Please sign in to comment.