mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-06 07:28:09 +01:00
tree debug: create library for easy indent/dedent
This commit is contained in:
parent
47a61699ab
commit
40c5164eef
7 changed files with 84 additions and 35 deletions
7
Makefile
7
Makefile
|
|
@ -31,8 +31,8 @@ srcs = \
|
|||
src/ft_errno.c \
|
||||
src/get_command.c \
|
||||
src/parser/cmdgroup/cmdgroup.c \
|
||||
src/parser/cmdlist/cmdlist_builder.c \
|
||||
src/parser/cmdlist/cmdlist.c \
|
||||
src/parser/cmdlist/cmdlist_builder.c \
|
||||
src/parser/cmdlist/cmdlist_item.c \
|
||||
src/parser/cmdlist/operator.c \
|
||||
src/parser/matchers/blank.c \
|
||||
|
|
@ -43,8 +43,8 @@ srcs = \
|
|||
src/parser/matchers/pipe.c \
|
||||
src/parser/matchers/quote.c \
|
||||
src/parser/pipeline/pipeline.c \
|
||||
src/parser/pipeline/pipeline_parse_baseops.c \
|
||||
src/parser/pipeline/pipeline_parse.c \
|
||||
src/parser/pipeline/pipeline_parse_baseops.c \
|
||||
src/parser/remove_quotes/remove_quotes.c \
|
||||
src/parser/simple_cmd/simple_cmd.c \
|
||||
src/parser/worddesc/worddesc.c \
|
||||
|
|
@ -70,8 +70,9 @@ srcs = \
|
|||
src/subst/variable_subst.c \
|
||||
src/subst/variable_subst_utils.c \
|
||||
src/subst/wildcard_exp.c \
|
||||
src/subst/wildcard_exp_utils2.c \
|
||||
src/subst/wildcard_exp_utils.c \
|
||||
src/subst/wildcard_exp_utils2.c \
|
||||
src/treedrawing.c \
|
||||
|
||||
objs = $(srcs:.c=.o)
|
||||
export objs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue