42sh/src/utils/Makefile.am

30 lines
543 B
Text
Raw Normal View History

lib_LIBRARIES = libutils.a
libutils_a_SOURCES = \
lists/lists1.c \
lists/lists2.c \
lists/lists3.c \
hash_map/hash_map.c \
string_utils/string_utils.c \
2026-01-10 19:57:36 +01:00
ast/ast.c \
ast/ast_if.c \
ast/ast_command.c \
ast/ast_list.c \
ast/ast_and_or.c \
ast/ast_redir.c \
ast/ast_void.c \
ast/ast_end.c \
2026-01-27 18:00:59 +01:00
ast/ast_word.c \
ast/ast_neg.c \
ast/ast_pipe.c \
ast/ast_loop.c \
args/args.c \
2026-01-29 19:35:08 +01:00
vars/vars.c \
ast/ast_assignment.c \
2026-01-31 19:25:42 +01:00
ast/ast_subshell.c \
ast/ast_function.c
libutils_a_CPPFLAGS = -I$(top_srcdir)/src
noinst_LIBRARIES = libutils.a