WIP parsing expansions
This commit is contained in:
6
Makefile
6
Makefile
@@ -5,7 +5,8 @@ CC = clang
|
||||
CFLAGS = -Wall -Wextra $(INCLUDES) -g # add -Werror, del -g
|
||||
|
||||
VPATH = $(DIR_SRCS)
|
||||
DIR_SRCS = srcs srcs/builtins srcs/lexing srcs/parsing
|
||||
DIR_SRCS = srcs srcs/builtins srcs/lexing \
|
||||
srcs/parsing srcs/parsing/valid_syntax srcs/parsing/expansions
|
||||
|
||||
INCLUDES = -I$(HEADERS_D) -I$(LIBFT_D)
|
||||
|
||||
@@ -25,8 +26,9 @@ SRCS = main.c init.c free.c generic.c \
|
||||
signals.c terminal.c \
|
||||
shell_loop.c shell_script.c \
|
||||
lexing.c fill_token.c check_operators.c \
|
||||
parsing.c \
|
||||
parsing.c alloc_cmd_array.c \
|
||||
valid_syntax.c valid_pipeline.c valid_command.c valid_io_redirect.c \
|
||||
words_expansions.c expand_token.c rejoin_after_expand.c new_token_for_each_field.c \
|
||||
env.c exit.c echo.c
|
||||
|
||||
DIR_OBJS = builds
|
||||
|
||||
Reference in New Issue
Block a user