fix(utils): Makefile.am sources

This commit is contained in:
william.valenduc 2026-01-18 01:45:27 +00:00
parent 096a7d81a0
commit 3cf1960a00

View file

@ -1,7 +1,7 @@
lib_LIBRARIES = libutils.a lib_LIBRARIES = libutils.a
libutils_a_SOURCES = \ libutils_a_SOURCES = \
string_utils/string_utils.c \ args/args.c \
ast/ast.c \ ast/ast.c \
ast/ast_if.c \ ast/ast_if.c \
ast/ast_command.c \ ast/ast_command.c \
@ -10,8 +10,10 @@ libutils_a_SOURCES = \
ast/ast_redir.c \ ast/ast_redir.c \
ast/ast_void.c \ ast/ast_void.c \
ast/ast_end.c \ ast/ast_end.c \
hash_map/hash_map.c \
lists/lists.c \ lists/lists.c \
args/args.c string_utils/string_utils.c \
vars/vars.c
libutils_a_CPPFLAGS = -I$(top_srcdir)/src libutils_a_CPPFLAGS = -I$(top_srcdir)/src