diff -r aaf85b3e9601 -r 0f0fe7311b76 src/Makefile --- a/src/Makefile Sun Oct 26 12:01:28 2025 +0100 +++ b/src/Makefile Sun Oct 26 12:44:33 2025 +0100 @@ -89,7 +89,7 @@ $(CC) -o $@ $(CFLAGS) -c $< $(build_dir)/hash_key$(OBJ_EXT): hash_key.c cx/hash_key.h cx/common.h \ - cx/string.h cx/allocator.h + cx/string.h cx/allocator.h cx/compare.h @echo "Compiling $<" $(CC) -o $@ $(CFLAGS) -c $< @@ -127,7 +127,8 @@ $(CC) -o $@ $(CFLAGS) -c $< $(build_dir)/map$(OBJ_EXT): map.c cx/map.h cx/common.h cx/collection.h \ - cx/allocator.h cx/iterator.h cx/compare.h cx/string.h cx/hash_key.h + cx/allocator.h cx/iterator.h cx/compare.h cx/string.h cx/hash_key.h \ + cx/list.h @echo "Compiling $<" $(CC) -o $@ $(CFLAGS) -c $<