42sh/src/utils/Makefile.am

21 lines
367 B
Text
Raw Normal View History

lib_LIBRARIES = libutils.a
libutils_a_SOURCES = \
2026-01-18 01:45:27 +00:00
args/args.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-18 01:45:27 +00:00
hash_map/hash_map.c \
lists/lists.c \
2026-01-18 01:45:27 +00:00
string_utils/string_utils.c \
vars/vars.c
libutils_a_CPPFLAGS = -I$(top_srcdir)/src
noinst_LIBRARIES = libutils.a