-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsrcs.mk
More file actions
92 lines (89 loc) · 2.23 KB
/
srcs.mk
File metadata and controls
92 lines (89 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
VPATH = $(SRC_DIR):$(SRC_DIR)/wrapper/fdc_wrapper:$(SRC_DIR)/wrapper/gc_wrapper:$(SRC_DIR)/gc:$(SRC_DIR)/error:$(SRC_DIR)/env:$(SRC_DIR)/utils:$(SRC_DIR)/ast:$(SRC_DIR)/builtins:$(SRC_DIR)/execution:$(SRC_DIR)/env:$(SRC_DIR)/fd:$(SRC_DIR)/builtins:$(SRC_DIR)/signals:$(SRC_DIR)/heredoc
SRCS = main.c \
cleanup.c \
gc_malloc.c \
gc_calloc.c \
gc_realloc.c \
gc_free.c \
gc_getcwd.c \
gc_holder.c \
gc_add.c \
gc_remove.c \
gc_empty.c \
error_handler.c \
env.c \
env_init.c \
env_empty.c \
gc_strdup.c \
gc_strjoin.c \
gc_split.c \
gc_substr.c \
ast_build.c \
ast_init.c \
ast_new_node.c \
ast_parse_pipe.c \
ast_parse_parentheses.c \
ast_parse_command.c \
ast_parse_logical_ops.c \
ast_empty.c \
ast_print.c \
input_transformation.c \
echo.c \
execute.c \
execute_builtin.c \
execute_external.c \
execute_pipe.c \
execute_logical.c \
execute_utils.c \
ast_parse_redirection.c \
gc_split_at.c \
gc_split_free.c \
is_redirection.c \
redir_utils.c \
fd_holder.c \
fd_remove.c \
fd_add.c \
fd_empty.c \
fdc_open.c \
fdc_close.c \
fdc_dup.c \
fdc_dup2.c \
fdc_pipe.c \
gc_lstclear.c \
gc_lstnew.c \
gc_lstremove.c \
gc_lstdelone.c \
handle_redirections.c \
handle_in_redirections.c \
handle_out_redirections.c \
export.c \
unset.c \
exit.c \
pwd.c \
cd.c \
env_set.c \
env_add.c \
get_env.c \
gc_itoa.c \
gc_unsplit.c \
gc_append.c \
expand_args.c \
remove_quotes.c \
gc_split_size.c \
print_invalid.c \
get_mini.c \
collect_heredocs.c \
read_heredocs.c \
apply_heredocs.c \
gc_size.c \
gc_print.c \
empty_heredoc.c \
wildcard.c \
get_user_input.c \
init.c \
matches_pattern.c \
transformation_utils.c \
create_identifier.c \
signal_setups.c \
signal_handlers.c \
regular_signal.c